hugo-theme-flat/layouts/partials/side-tags.html

13 lines
288 B
HTML
Raw Normal View History

2022-04-27 13:54:00 +00:00
<div class="side-tags">
<h2>Tags</h2>
<hr />
<ul>
{{ range .Site.Taxonomies.tags.Alphabetical }}
<li>
2022-09-04 11:11:04 +00:00
<a href="{{ "tags/" | relURL }}{{ .Name | urlize }}">{{ .Name }} ({{ .Count }})</a>
2022-04-27 13:54:00 +00:00
</li>
{{ end }}
</ul>
</div>