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

10 lines
182 B
HTML
Raw Normal View History

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