How Create a blog like this
Process requires a github account (which you can have for free) and about 30 mins of free time. This is made possible by FOSS tool called jekyll.
-
Sign up for free github account (if you haven't already).
-
Fork jekyll-now repository. (Just press the fork button on top right of the page).
-
Rename the forked repository to "yourusername.github.io".(you can access rename from settings page of the repository) For example if your username is "abcd" your repository name should be "abcd.github.io".
-
Now visit "http://yourusername.github.io". You should find your blog you just created there (It could be take up to 10 mins as Github suggests). If not check the repository settings page. If there is a error you could see that in page with built error notification.
Easy right?
-
Now edit the "_config.yml" file in your repository to make that blog personalized (this file is pretty self-explanatory). And commit the changes.
-
Publishing the first post. Edit the "/_posts/2014-3-3-Hello-World.md" by replacing the placeholder content with your own.
-
If you own a domain name edit the "CNAME" file and got to your domain name registrar and add a CNAME DNS record. So you can visit the blog you just created in "www.yourdomainname.com".
type: CNAME
host: www.yourdomainname.com
answer: yourusername.github.io
TTL: 300
-
Now you better learn on git(if you haven't already) in order to continue adding blog posts.
This is the link for the guide I followed which is more explanatory.