Hacker News new | ask | show | jobs
by tmaly 2060 days ago
I use Hugo with a custom template I made based off a public one that was out there. No need to worry about security updates as it is all just static html. If I every want to change the look, I can just switch out the template and regenerate the html.

All I have to do to write an new post is:

hugo new post/name-of-post.md

fire up vim on the name-of-post.md file and write my post in markdown.

run hugo to generate the html

cd to the public directory and run rsync to publish the new html post to my site.