blog/themes/gruvbox/layouts/_default/taxonomy.html

12 lines
246 B
HTML
Raw Normal View History

2021-03-24 20:30:42 +00:00
{{ define "main" }}
<h1>posts tagged: {{ .Title }}</h1>
<ul>
{{ range .Data.Pages }}
<li>
<a href="../{{ .Permalink }}">{{ .Title }}</a>
<time>{{ .Date.Format "2006-01-02" }}</time>
</li>
{{ end }}
</ul>
{{ end }}