karis
1
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
karis
2
{{ $tags := site.Taxonomies.tags.ByCount }}
{{ range where $tags "Count" ">=" 2 }}
<a href="{{ .Page.RelPermalink }}" >{{ .Page.LinkTitle }} ({{ .Count }})
{{ end }}
Reference ByCount | Hugo
system
Closed
3
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.