mirror of https://github.com/kirsle/kirsle.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
578 B
20 lines
578 B
{{ if .IndexView }}
|
|
Sorted by most frequently used:
|
|
|
|
<ul>
|
|
{{ range .Tags }}
|
|
<li><a href="/tagged/{{ .Name }}">{{ .Name }}</a> ({{ .Count }})</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ else }}
|
|
<ul>
|
|
<li>» <a href="/blog/archive">Blog Archives</a></li>
|
|
{{ range .Tags }}
|
|
{{ if ge .Count 8 }}
|
|
<li>» <a href="/tagged/{{ .Name }}">{{ .Name }}</a>
|
|
<small>({{ .Count }})</small></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
<li>» <a href="/tagged">View all tags</a></li>
|
|
</ul>
|
|
{{ end }}
|
|
|