The above is a term page. I would create a term page template, something like:
layouts/_default/term.html
{{ define "main" }}
<h1>{{ .Title }}</h1>
<ul>
{{ range .Parent.Data.Terms }}
{{ if eq $ .Page }}
<li class="active"><a href="{{ .Page.RelPermalink }}">{{ .Page.LinkTitle }}</a></li>
{{ else }}
<li><a href="{{ .Page.RelPermalink }}">{{ .Page.LinkTitle }}</a></li>
{{ end }}
{{ end }}
</ul>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ end }}
{{ end }}
Try it:
git clone --single-branch -b hugo-forum-topic-49806 https://github.com/jmooring/hugo-testing hugo-forum-topic-49806
cd hugo-forum-topic-49806
hugo server
You’re doing it wrong. Read the entire thread. You need to do this to try it:
git clone --single-branch -b hugo-forum-topic-42288 https://github.com/jmooring/hugo-testing hugo-forum-topic-42288
cd hugo-forum-topic-42288
hugo server