more taxonomy changes + separate header

too eepy to write a proper commit message
This commit is contained in:
magmaus3 2023-08-10 00:15:35 +02:00
parent 90a58c28c6
commit e46e36412d
Signed by: magmaus3
GPG key ID: 966755D3F4A9B251
7 changed files with 28 additions and 11 deletions

View file

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