add new layers

This commit is contained in:
loikein 2023-04-24 02:16:28 +01:00
commit b3c260bccf
3 changed files with 85 additions and 0 deletions
layouts/book

View file

@ -0,0 +1,25 @@
{{ 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 }}