hugo-tufte/layouts/book/all.html

43 lines
934 B
HTML
Raw Permalink Normal View History

2023-04-24 03:16:28 +02:00
{{ define "main" }}
<div id="layout">
<article>
2023-04-29 06:18:01 +02:00
{{- partial "content.header.html" . -}}
2023-04-24 03:16:28 +02:00
<!-- https://discourse.gohugo.io/t/how-to-build-one-collection-for-all-nested-sections/27950/5 -->
2023-04-29 06:18:01 +02:00
{{- with .Content -}}
2023-04-24 03:16:28 +02:00
<section>
{{ . }}
</section>
2023-04-29 06:18:01 +02:00
{{- end -}}
2023-04-24 03:16:28 +02:00
<section class="list-page">
<!-- preambles -->
{{- if .RegularPages -}}
<ul>
{{ range .RegularPages.ByTitle -}}
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}}&nbsp;:: Draft{{- end -}}</a></li>
{{ end -}}
</ul>
{{- end -}}
<!-- sub categories & pages -->
{{- range .Sections.ByTitle -}}
<p><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}}&nbsp;:: Draft{{- end -}}</a></p>
2023-04-24 03:16:28 +02:00
<ul>
{{- range .RegularPages.ByTitle -}}
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}}&nbsp;:: Draft{{- end -}}</a></li>
2023-04-24 03:16:28 +02:00
{{- end -}}
</ul>
{{- end -}}
</section>
{{ partial "footer.html" . }}
2023-04-29 06:18:01 +02:00
{{ partial "nav.html" . }}
2023-04-24 03:16:28 +02:00
</article>
</div>
{{ end }}