Okay. This is super weird. I am talking about my site (flypenguin dot de, repo gitlab dot com/flypenguin/hugo-flypenguin-de/), which – as of today – I am building a theme for (link further down, sorry about that, “new user” link count restrictions).
Now, if I rename the file /content/about.md
to content/index.md
, my /tags
suddenly shows “No tags”, which I consider really really weird. I don’t change anything else.
Also, the “Posts” menu item vanishes. Again – just by renaming the file content/{about -> index}.md
.
At least () the /posts
URL is also unavailable in the latter case.
The code to render the navbar is this:
<div class="navbar-start">
<a href="{{ .Site.BaseURL }}" class="navbar-item">Home</a>
<a href="/tags" class="navbar-item">Tags</a>
{{- range .Site.Sections }}
<a href="{{ .RelPermalink }}" class="navbar-item">{{ .Name }}</a>
{{- end }}
</div>
the code to render the tag word cloud is this (a bit too big to paste …).
so, i am “slightly” confused, and would appreciate any help from some more enlightened hugo magicians … .
if you want to reproduce, just clone my site and rename the file … that is all.
thanks in advance!