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

19 lines
499 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>
2018-07-20 15:27:32 +00:00
{{ range .Pages.ByPublishDate.Reverse }}
2018-07-01 08:09:29 +00:00
<li>
2018-07-20 15:27:32 +00:00
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} | {{ .Title }}</a>
2018-07-01 08:09:29 +00:00
</li>
{{ end }}
</ul>
2018-01-26 19:00:30 +00:00
</div>
2018-07-01 08:09:29 +00:00
{{ end }}