unfortunately you are on your own. The theme has no code inside to render terms or categories beyond the standard /tags and /categories listings.
you’ll have to adjust the templates of the theme.
here’s an example for the tags from theme generated by hugo new theme
place the partial from _layouts/partials/terms.html in your layouts/partials/ folder
here's the content:
{{- /*
For a given taxonomy, renders a list of terms assigned to the page.
@context {page} page The current page.
@context {string} taxonomy The taxonomy.
@example: {{ partial "terms.html" (dict "taxonomy" "tags" "page" .) }}
*/}}
{{- $page := .page }}
{{- $taxonomy := .taxonomy }}
{{- with $page.GetTerms $taxonomy }}
{{- $label := (index . 0).Parent.LinkTitle }}
<div>
<div>{{ $label }}:</div>
<ul>
{{- range . }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{- end }}
</ul>
</div>
{{- end }}
copy the template for a single page from the hba theme to your own layouts folder
source: themes\hugo-blog-awesome\layouts\_default\single.html
target: layouts\_default\single.html
call the parial inside to add the terms to the page fe direct before the header closing tag
The tags are now displayed the way I want them to be.
You’ve guided me to restore the Tables of contents label.
I had Hugo configured incorrectly.
Now everything is the way I want it!
Thank you very much!