hugo-theme-introduction/layouts/_default/taxonomy.html
2018-07-20 17:27:32 +02:00

18 lines
499 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.Reverse }}
<li>
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} | {{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}