Skip to content

pebblecode/pebblecode.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ff771ea · Aug 16, 2016
Aug 15, 2016
Aug 16, 2016
Aug 4, 2016
Aug 16, 2016
Jun 20, 2016
Jun 30, 2016
Aug 16, 2016
Jun 14, 2016
Aug 16, 2016
Aug 16, 2016
Jun 18, 2015
Jul 19, 2016
Dec 16, 2015
Sep 22, 2015
Aug 15, 2016
Jul 13, 2016
Jun 23, 2016
May 20, 2016
Jun 14, 2016
Jun 9, 2015
May 5, 2016
Aug 15, 2016
Mar 1, 2016
May 15, 2016
Jun 9, 2015
May 24, 2016
Jun 14, 2016
Jun 30, 2016
Jul 21, 2015
Jun 9, 2015
Jun 9, 2015
Jun 9, 2015
Aug 15, 2016
Jun 9, 2015
Jun 9, 2015
Aug 5, 2016
Jun 17, 2015
Jul 4, 2016
Jun 27, 2016
Jun 27, 2016
Jun 27, 2016
Jun 20, 2016

Repository files navigation

pebblecode.com

The Jekyll based website for pebblecode.com.

Getting Started

#####1. Install bundler:

gem install bundler

You may need to include sudo at the start if there is a permissions error.

#####2. Install jekyll bundle:

bundle install

#####3. Build and view the website locally:

cd [project folder]

jekyll serve

To host the site on the network for testing, you'll need

jekyll serve --host=0.0.0.0

#####3.5. Build and view the website locally with live reloading:

cd [project folder]

guard

This will start up a server on port 4000, and it will reload on any changes to SASS, JS, and content.

#####4. View the website:

http://localhost:4000

Developing

Template source can be found in _layouts. Component source can be found in _includes. Sass styles can be found in _sass. The jekyll website is then built into the _site folder which includes all of the files needed to make the website.

Content

Most of the major editable content can be found in the markdown files (such as 1-services.md). Use the number at the start of the filename to order the pages.

Creating a Blog Post

Create a Markdown file within the _posts folder. The name structure is a backward date followed by the title of your post, for example: 2011-10-18-a-day-with-clojure.md. All of the content within this file is written using the Markdown language.

At the top of your markdown file there should be the post information like so:

---
layout: post
title:  On Average, the World is Happy
author: Ian Black
categories: hackday
thumbnail: /img/blog/happy.jpg
---

You can set whether an article is featured at the top of the blog homepage by setting: feature: true within the information section at the top of the markdown file. Make sure only one post is set to this.

Images are linked like this:

![3DS](/img/posts/2015-07-17-solving-the-right-problem/3ds.jpg)

The caption is included within square brackets ![caption] and the path to the image file included within the regular brackets directly after. Include images within the img/posts/ folder and create a new folder named after your post file name.

If you're thinking of adding code snippets, embedding Github Gists is highly advised for readability and syntax highlighting. You can do it like so:

{% gist $ID_OF_YOUR_GIST  %}

You can easily create and upload gists with a tool like this.

Categories

Creating new categories isn't advised due to categorised blog templates needing to be created manually. Either seek out already created categories within the blog/tag folder or use the following top categories:

Health, Transport, Design, Agile, Lightning Talks, Hacks, Tutorial, Opinion, Digital Transformation, Lean, Innovation, Bluetooth

Deploying

Once you are happy, push this file to the master branch to go LIVE.

Tips

  • Always wrap video elements in a <div class="video"></div> element if you want it to look awesome.
  • Use an h3 at the start of articles to give a summary of the post.