blog-static/themes/vanilla/layouts/tags/terms.html
Danila Fedorin e883e3c60e
Some checks failed
continuous-integration/drone/push Build is failing
Update link lists to visually indicate they're links.
2020-05-04 19:25:03 -07:00

11 lines
227 B
HTML

{{ define "main" }}
<h2>{{ .Title }}</h2>
Below is a list of all the tags ever used on this site.
<ul>
{{ range sort .Pages "Title" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}