hugo-theme-introduction/layouts/_default/taxonomy.html

19 lines
484 B
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
{{ define "title" }}
<h1 class="bold-title is-1">Tagged "{{ lower .Title }}"</h1>
{{ end }}
{{ define "main" }}
<div class="container">
2018-01-26 19:00:30 +00:00
<article>
{{ .Content }}
</article>
2018-07-01 08:09:29 +00:00
<ul>
{{ range .Pages.ByPublishDate }}
<li>
<a href="{{.Permalink}}">{{.Date.Format (.Site.Params.dateform | default "Jan 02, 2006") }} | {{.Title}}</a>
</li>
{{ end }}
</ul>
2018-01-26 19:00:30 +00:00
</div>
2018-07-01 08:09:29 +00:00
{{ end }}