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

10 lines
167 B
HTML
Raw Normal View History

2019-08-02 22:29:26 -07:00
{{ define "main" }}
<h2>Tagged "{{ .Title }}"</h2>
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}