Why I Built This Website in Hugo
An email has come flooding in to request information about the software I use to generate this site. So then, technically minded readers and enthusiastic neophytes alike, let us take a journey into the web.
One of the benefits of doing my writing in Emacs is that I’m able to write everything in one place, and then ‘publish’ it to lots of different places. This is the ‘write once, publish everywhere’ paradigm that I’m rather fond of, and means I have a ‘single source of truth’ for all my writing.
This site is one of those places. To work neatly with my Emacs setup, it was important that I chose a system that fits the ‘write once, publish everywhere’ philosophy. The software I use to achieve that is Hugo.
I should note that Hugo is not the only web software that would have worked with my writing setup. In fact, there are probably a great number of systems that might have done as good a job. However, I chose Hugo for particular reasons which I will detail here. Additionally, I happen to like Hugo’s design, even if that is somewhat subjective on my part.
Before I tell you why I chose Hugo, let us look at how sites today are being made. Simplifying things greatly, let us say that there are three ways to make a website:
- Manual Static Creation
- Dynamic Generation
- Static Generation
Manual Static Creation
The simplest way to make a site (and also the original way) is to create it once, in full, then upload it to a web server. Each time a visitor comes to your site, they will see the same thing, unless you go through the time-consuming process of updating the entire site and uploading it again.
The benefits of this method are its simplicity, cost, and loading speed. It doesn’t require databases or other fancy server features (which tend to cost more money), it’s secure, and it will load quickly for your visitors.
The downsides are that the sites are time-consuming to update, and not dynamic to user input.
Dynamic Generation
These sites are more complicated to create, and usually require a database and language processor on the server (which often costs more money). However, these sites have the ability to update themselves based on content from other sources (such as other sites or the site’s visitors). This makes it easier to serve content for a specific user, and to have all the content on the site dynamically refactor itself and provide relevant “You might also like…” links to other pages as they are added.
The benefits to this system are that it produces sites that are easier to update (you can often add single items of content through the site itself without needing to update the whole site and upload it manually). The sites are more dynamic, allowing content to be pulled in from their visitors and other sources, menus and links automatically update to display new content, and content can be customised for each visitor.
The downsides are that these sites are less secure (requiring you to spend time patching the site software). If you use third party sources or visitor content then you must monitor what content appears on your site. Dynamic sites are generally complicated to set up, and they usually cost more because of the databases and other server features that they rely on. These sites also tend to load more slowly because they need to generate their content on the fly. Depending on how good your server is, this could make the site a lot less fun for your readers to use.
Static Generation
Between static creation and dynamic generation we have a middle ground. Statically generated sites are generated in one go before they are uploaded to a server. The idea here is to make the sites easier to update, but not require the databases and server scripting languages of dynamic generators. Once the site is uploaded, it will appear the same for each visitor with no auto-generated content.
The benefits then are ease of updating, menu systems and other links being automatically created, no requirement for databases or fancy server features, generally secure, and fast to load.
The downsides are that the sites are less dynamic than fully dynamically generated sites, and they aren’t tailored to each visitor.
Hugo is in this last category. I wanted a static generator solution because this site will only be updated sporadically, and I didn’t feel unique visitor content or public comments would be useful in this case. I also wanted the ease of updating through my writing system, and most static site generators deal better with this than the other two methods. It’s also possible to still have dynamic content on statically generated sites, but this must be done on the user’s computer, rather than on the server. This method involves calling on third party services using JavaScript (known as the Jamstack).
There are lots of static site generators around, but I went for Hugo because it seemed to work the way I would expect such a system to work. As such, the learning process was pretty straightforward for me. When I investigated other systems, they seemed much more complicated (and often needlessly so, because Hugo also seemed more powerful and flexible). Hugo is also incredibly fast, and requires only one program file to work (meaning I can archive that file along with the site to make sure I can continue generating the site in the future).
In Hugo, all the files that tell the site how to look, and what content to display are on my computer. When I run the Hugo program, it converts all those files into the site. After the site is initially set up, all you have to do is add content files and Hugo takes care of the rest. It can also be made to integrate beautifully with GitHub pages, meaning you can essentially get a professional site online, with complete control over how it looks and operates, without it costing you a penny. And all operated directly from within Emacs (if that’s your bag… I know mine is).
Hugo also provides a local live server, meaning that anytime you update the source files, you can immediately see the results in a web browser before you publish it online.
I won’t discuss more details about Hugo here, as it is a complex topic, but I hope I have given you enough information to investigate it yourself. If you have the dream to create a powerful and professional site that is totally customised to your needs, loads fast for your users, gives you live feedback during development, and can be deployed without spending any money, then Hugo may well be worth your time to learn.