It’s been a relief to move away from the bloat of WordPress. I decided to use Hugo and host all of the content in Github. I am even able to use Github Actions to manage the continuous integration/delivery of the source to Github Pages all entirely for free. While Github Pages, and Hugo both generate static html pages, I was able to enable comments, via utteranc.es which stores the comments in Github as issues.

The overall experience is wonderful, clean and simple. The writing experience is also very enjoyable since markdown is a lot more predictable compared to WYSIWYG editors most WordPress authors rely on.

The theme for the blog is Hyde, where I have made minor tweaks to the template to enable utteranc.es comments, via this simple JavaScript block:

<script src="https://utteranc.es/client.js"
        repo="splusq/splusq.github.io"
        issue-term="title"
        theme="github-light"
        crossorigin="anonymous"
        async>
</script>