Migration to Hugo
Hello guys, its been so long, I havn鈥檛 written any post. Recently, I have migrated my blog from Pelican(python based static site generator) to Hugo(GO based static site generator). Today, I will write about it. You can explore my blog at surajnarwade.github.io Installing Hugo . Install hugo $ go get -v github.com/spf13/hugo Check whether it is properly installed or not $ hugo help Using Hugo . We need to tell hugo to generate blog skeleton, type following command for that: $ hugo new site myblog myblog directory will be created, checkout into directory: $ cd myblog $ tree ....