Configure Jekyll
Your _config.yml is the first place you should start when configuring your site. This is where basic site configuration information is stored. This file can get rather complicated but let’s first take a look at the basics.
Below is the beginning of my configuration file after editing it.
These options are pretty self explanatory.
The way you edit it is by typing a value next to the key. The key is ‘title:’ and the value would be Developing Woot.
title: Your sites title email: The email address you want displayed in your footer description: Your sites description. This is by default displayed in the footer also. baseurl: This should be left blank with out current configuration url: This is the url for your site
You can see I also included my twitter username and my github username. Then I added someting that is not there by default, timezone. This can be beneficial because Jekyll uses the timestamp of your post to determine when it should be displayed in your lists of posts.
If you right a post and the time of the post is some time in the future it will not display on your blog until that time has passed. The timezone allows Jekyll to know where you are so your posts will show based on this timezone, not the timezone of the server.
Is that all there is to configuring a Jekyll blog? Nope. This config file can get extremely complex, but this at least gets you started.
To all you dev’s out there I hope your Jekyll coding is going as well as mine but if not drop me a line I would be glad to help out.