Cannot display tags taxonomy

@andrewrgoss I’m not sure how your source is set up and I’m about to take off and don’t have time to check, but hope this helps.

  1. Make sure you have the following in your config.toml:
[taxonomies]
  tag = "tags"
  1. Then in layouts/_default/terms.html
<ul class="tags-listing">
	    {{ $data := .Data }}
	    {{ $thisURL := .URL}}
	    {{ range $key,$value := .Data.Terms.Alphabetical }}
	    <li class="site-tag">
		<a href="/{{ $data.Plural }}/{{ $value.Name | urlize }}">
		<h3>{{ replace $value.Name "-" " " }} ({{ $value.Count }})</h3></a>
		</li>
	    {{ end }}
 </ul>

Of course change your CSS classes to whatever you want.

1 Like