I have a personal blog that I maintain, and I upgraded the version of hugo that I use from 0.111.3 to 0.121.1. My blog uses a modified version of the archie theme, with the most notable modification being that the index.html acts similar to how a list.html page would, displaying all posts without pagination.
I’ve noticed, however, that inconsistently, my homepage will generate with a single post that has an empty title, like so
in contrast to a normal set of list entries, like so
<ul class="posts"><li class="post">
<a href="/posts/trackball-scroll/">Scrolling With Your Trackball in 2023 and <code>libinput</code></a> <span class="meta">(Dec 28, 2023)</span>
</li>
...
</ul>
This seems to happen maybe every one in five builds, and I’m really not sure why. I have been trying to track down what’s going on here to file a bug, but I haven’t been able to figure out what’s wrong enough to provide a MWE.
Might someone be able to help me out here? Thanks!
Woah, that’s interesting. I totally missed that note in the FAQ. Thanks!
I guess my follow-up would be: how can I still preserve the posts list section as my homepage? I had originally done that url: / to achieve this effect, but I’m not sure if there’s a better way.