I’ve been rebuilding my webpage using the static page generator Hugo. My aim is to make a lightning fast webpage that only loads the bare essentials. This naturally relying on a lot of css being supported by the different browser, but by using HTML5 i hope to end up with at site that’s readable even if the css fails to load.
Hugo comes with alot of help builtin, it creates sitemaps, headers, footers and the like out of the box. Changing the name of a post, HUGO will handle the internal route and change the link all the places it need to be changed. I have a super simple site, so I was just coding everything directly into HTML. This rarely caused me to have problems with links or the like, but I’ve been thinking about adding a blog to my homepage. Mostly I wan’t a bit of an technical blog where I can make mental notes of how/why I implemented different solutions. Often I come back months/years later and I cannot understand why I made a specific implementations and I’ll be afraid to change when, if I don’t fully understand the implications. Having a blog add new complexity if just writing directly to HTML, I need to link all the posts, have navigation back and forth between the posts, sorting and such.
...