blog-static/themes/vanilla/layouts/tags/terms.html

11 lines
197 B
HTML
Raw Normal View History

2019-08-02 22:29:26 -07:00
{{ define "main" }}
<h2>{{ i18n "Tags" }}</h2>
2020-08-12 17:41:47 -07:00
{{ i18n "AllTags" }}
2019-08-02 22:29:26 -07:00
<ul>
{{ range sort .Pages "Title" }}
2019-08-02 22:29:26 -07:00
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}