hugo-theme-introduction/layouts/_default/taxonomy.html
2018-07-01 10:09:29 +02:00

18 lines
484 B
HTML

{{ define "title" }}
<h1 class="bold-title is-1">Tagged "{{ lower .Title }}"</h1>
{{ end }}
{{ define "main" }}
<div class="container">
<article>
{{ .Content }}
</article>
<ul>
{{ range .Pages.ByPublishDate }}
<li>
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}