Code blocking term template for tags

This code in the link below affects the tag’s term page. Any tips to make it work?

layouts/
├── _default/
│   ├── baseof.html
│   ├── home.html
│   ├── list.html
│   └── single.html
├── categories/  
│   ├── taxonomy.html
│   └── term.html
└── tags/
    ├── taxonomy.html
    └── term.html  <-- ignored. Page Not Found
{{ $tags := site.Taxonomies.tags.ByCount }}
{{ range where $tags "Count" ">=" 2 }}
 <a href="{{ .Page.RelPermalink }}" >{{ .Page.LinkTitle }} ({{ .Count }})
{{ end }}

Reference ByCount | Hugo

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.