# Code blocking term template for tags

**URL:** https://discourse.gohugo.io/t/code-blocking-term-template-for-tags/51781
**Category:** support
**Created:** [October 3, 2024, 1:18am UTC](https://discourse.gohugo.io/t/code-blocking-term-template-for-tags/51781 "2024-10-03T01:18:06Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![karis](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/karis/32/22946_2.png) [@karis](https://discourse.gohugo.io/u/karis)
#### Post date: [October 3, 2024, 1:18am UTC](https://discourse.gohugo.io/t/code-blocking-term-template-for-tags/51781/1 "2024-10-03T01:18:06Z")

</div>

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

> [@Tag Cloud](https://discourse.gohugo.io/t/tag-cloud/6335):
>
> I searched for “tag cloud”, and assumed I could find some good examples, but no … So I made it myself: See it in action here: [http://themes.gohugo.io/](http://themes.gohugo.io/)

```auto
layouts/
├── _default/
│ ├── baseof.html
│ ├── home.html
│ ├── list.html
│ └── single.html
├── categories/  
│ ├── taxonomy.html
│ └── term.html
└── tags/
    ├── taxonomy.html
    └── term.html <-- ignored. Page Not Found

```

---

<div class="post-metadata">

### Author: ![karis](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/karis/32/22946_2.png) [@karis](https://discourse.gohugo.io/u/karis)
#### Post date: [October 3, 2024, 1:44am UTC](https://discourse.gohugo.io/t/code-blocking-term-template-for-tags/51781/2 "2024-10-03T01:44:13Z")

</div>

```auto
{{ $tags := site.Taxonomies.tags.ByCount }}
{{ range where $tags "Count" ">=" 2 }}
 <a href="{{ .Page.RelPermalink }}" >{{ .Page.LinkTitle }} ({{ .Count }})
{{ end }}

```

Reference [ByCount | Hugo](https://gohugo.io/methods/taxonomy/bycount/#example)

---

<div class="post-metadata">

### Author: ![system](https://yyz2.discourse-cdn.com/flex036/user_avatar/discourse.gohugo.io/system/32/1_2.png) [@system](https://discourse.gohugo.io/u/system)
#### Post date: [October 5, 2024, 1:44am UTC](https://discourse.gohugo.io/t/code-blocking-term-template-for-tags/51781/3 "2024-10-05T01:44:33Z")

</div>

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