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

12 lines
243 B
HTML

{{ 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 }}