Farewell Wordpress, Hello Jekyll!

Here I am, signing off from a self-hosted, over-bloated Wordpress site and finding a welcome change in Jekyll, a blog-aware static site generator. There is nothing new about this, several well-known bloggers have already migrated to Jekyll in the last few years including Rasmus Andersson, Nick Quaranto and Roger Chapman. Ever since Tom Preston Werner invented this thing in 2008 and published his infamous article about Blogging Like a Hacker, it has become the Go-to thing for those of us who favour on-line publishing above everything else.

And that’s for many good reasons, the most important being a major issue with Wordpress design - Of what use is an RDBMS database like mysql in a weblog?. I think this question should have been asked the day Wordpress was invented. However, since there weren’t too many alternatives in those days and php hosting was way too easy, most ignored this factor.

Save me a ton of money

Jekyll generates static sites made of pure HTML/CSS. A static site is a website whose content stays static (unchanged by any user-input) on the server-side (though dynamic functionality can be provided on the client-side using javascript). What this means is that you are not only done away with the hassle of hosting your own database, but also avoid costly monthly fees going to your Web Hosting Providers. That’s because unlike a php hosted dynamic site, a static site is much much faster and cheaper. In fact, Github pages provides you free static web hosting without any bandwidth or space restrictions!

How do I implement this?

The References section at the bottom contains a couple of links to detailed migration guides if you intend to go this route. As any seasoned php programmer would tell you, programming in a language like php isn’t everyone’s cup of tea. While you don’t have to do any programming for hosting a static site, you should still know about a few things in order to implement a static site:

For instance, when I write:

[Jekyll](http://jekyllrb.com/)

It becomes:

Jekyll

Making lists, headings, etc. is as easy. For instance,

### Three hashes means H3
#### Four hashes means H4
1. This is list-item1
2. This is list-item2

becomes:

Three hashes means H3

Four hashes means H4

  1. This is list-item1
  2. This is list-item2

Outcome

Jekyll feels so good that I can’t recommend you enough of it! If you are presently using a self-hosted wordpress site and want to migrate to Jekyll and Github-pages, just go ahead and do it without any second thoughts. And after that, please let me know about your migration experience through disqus comments below this post!

Reference:

[ php  wordpress  jekyll  ]