---------DEPRECATED------------ GOTO Consentua/blog
Jekyll blog for Consentua hosted on github pages. Forked from Hyde
In github or in prose.io login with an account able to edit this repo; go to _posts/ there you can see other posts including the example post.
Have a look inside the example post _posts/2012-02-07-example-content.md, use this file as a guide on how to write a blog post.
Posts require a few things to work:
- correct file name structure eg
2012-02-07-example-content.mdwith date with dashes, and post title. - have the following configurations at the top of the file:
example config
---
layout: post
title: Example content
published: true
author: jack_mason
comments: true
---
# Content ...
layout: post- is required to function as a posttitle:- title of the post (be the same as in the file name)published:- can be ture or false, if false the post wont display on the blog; this means you can work on a blog post without it bieng visible to anyone.author:- the author of the post, see_data/authors.ymlto see valid author details.comments:- enables / disables the comments at the bottom of the blog post.
Clone or fork this repo, make sure you have ruby and jekyll installed on your machine, and run:
install dependencies:
gem install -g
and serve:
$ jekyll serve
# => A development server will run at http://localhost:4000/
# Auto-regeneration: enabled. Use `--no-watch` to disable.
To deploy to github pages, just commit and push your changes to the master branch on github.