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

10 lines
182 B
HTML

{{ define "main" }}
<h2>Tagged "{{ .Title }}"</h2>
<ul>
{{ range .Pages.ByDate.Reverse }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
{{ end }}