From 32cc6b9979e5ca11abe9338268b3412104fc578a Mon Sep 17 00:00:00 2001 From: Filipe Moreira Date: Sun, 18 Jun 2017 23:27:43 +0100 Subject: [PATCH] Add: new post "Porting my blog to Hugo" --- content/blog/porting-my-blog-to-hugo.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 content/blog/porting-my-blog-to-hugo.md diff --git a/content/blog/porting-my-blog-to-hugo.md b/content/blog/porting-my-blog-to-hugo.md new file mode 100644 index 0000000..b975702 --- /dev/null +++ b/content/blog/porting-my-blog-to-hugo.md @@ -0,0 +1,16 @@ ++++ +categories = [] +date = "2017-06-18" +description = "I'm just completed porting my blog to Hugo" +tags = [] +title = "Porting my blog to Hugo" + ++++ + +I've just completed porting my blog from [Jekyll](http://jekyllrb.com/) and [Octopress](http://octopress.org/) to [Hugo](http://gohugo.io/). [Hugo](http://gohugo.io/) is built with [Go](https://golang.org/) and has some nice features such as: + +- Speed -- Hugo is blazing fast and can compile my site in few ms. +- Single executable -- Go generates a single executable that has no external dependencies. +- Tinkering -- I'm learning Go at the moment so this is a opportunity to get a handle in some aspects of the language (e.g. templating). + +The site is served statically from [Github Pages](https://pages.github.com/). Hopefully this will remove friction and make it even easier to write more posts. A big thanks to the authors of [Hugo](https://github.com/gohugoio/hugo) and also to [Sustain](https://github.com/nurlansu/hugo-sustain), the theme currently used.