hugo-tufte/layouts/book/volumes.html
2023-04-24 02:16:28 +01:00

25 lines
351 B
HTML

{{ define "main" }}
<div id="layout">
<article>
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
<section class="list-page">
<ul>
{{ range .Pages.ByTitle }}
{{ if .IsSection }}
<li><a href="{{ .RelPermalink }}">{{.Title}}</a></li>
{{ end }}
{{ end }}
</ul>
</section>
{{ partial "footer.html" . }}
</article>
</div>
{{ end }}