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

12 lines
279 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>
<a href="{{ "/tags/" }}{{ .Name | urlize }}">{{ .Name }} ({{ .Count }})</a>
</li>
{{ end }}
</ul>
</div>