hugo-tufte/layouts/book/volumes.html

45 lines
696 B
HTML
Raw Normal View History

2023-04-24 03:16:28 +02:00
{{ define "main" }}
<div id="layout">
<article>
{{ partial "content.header.html" . }}
2023-04-25 16:19:09 +02:00
{{ with .Content }}
<section>
{{ . }}
</section>
{{ 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 -->
{{- if .Sections -}}
2023-04-24 03:16:28 +02:00
<ul>
{{ range .Sections.ByTitle }}
<li><a href="{{ .RelPermalink }}">{{ .Title }}{{- if .Draft -}}&nbsp;:: Draft{{- end -}}</a></li>
2023-04-24 03:16:28 +02:00
{{ end }}
</ul>
{{- end -}}
2023-04-24 03:16:28 +02:00
</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 }}