hugo-tufte/layouts/book/chapters.html

26 lines
348 B
HTML
Raw Normal View History

2023-04-24 03:16:28 +02:00
{{ define "main" }}
<div id="layout">
<article>
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
<section class="list-page">
<ul>
{{ range .Pages.ByTitle }}
{{ if .IsPage }}
<li><a href="{{ .RelPermalink }}">{{.Title}}</a></li>
{{ end }}
{{ end }}
</ul>
</section>
{{ partial "footer.html" . }}
</article>
</div>
{{ end }}