grannysmith-technical/layouts/_default/taxonomy.html
magmaus3 e46e36412d
more taxonomy changes + separate header
too eepy to write a proper commit message
2023-08-10 00:16:46 +02:00

13 lines
391 B
HTML

{{ define "main" }}
<main>
<div>
<h1>{{ .Name | lower }}</h1>
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
<ul>
{{ range .Pages }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>
</div>
</main>
{{ end }}