hugo-tufte/layouts/book/volumes.html
2023-04-25 15:19:09 +01:00

31 lines
451 B
HTML

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