hugo-theme-noteworthy/layouts/_default/terms.html

12 lines
263 B
HTML
Raw Permalink Normal View History

2020-02-02 17:13:02 +00:00
{{ define "main" }}
<!-- Shows all of the site's tags -->
<h1>Tags</h1>
<ul>
{{ range .Data.Terms.Alphabetical }}
2020-02-02 17:13:02 +00:00
<li><a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> {{ .Count }}</li>
{{ end }}
2020-02-02 17:13:02 +00:00
</ul>
2020-02-02 17:13:02 +00:00
<div class="page-footer"></div>
{{end}}