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

24 lines
601 B
HTML
Raw Normal View History

2020-02-02 17:13:02 +00:00
{{ define "main" }}
<!-- Page that displays after clicking on a post's tag -->
<h1>Tagged "{{ .Data.Term }}"</h1>
{{range .Pages}}
<!-- Display the posts with the tag -->
<article>
<h2>
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h2>
<div>
<p>
{{ .Summary }}
</p>
</div>
<div class="post-footer">
<time>{{ .Date.Format "January 2, 2006" }}</time>
</div>
</article>
{{ end }}
{{ end }}