waltuh-hugo-theme/layouts/index.html

13 lines
186 B
HTML
Raw Permalink Normal View History

2023-07-19 19:33:57 +00:00
{{ define "main" }}
<div class="scroll">
{{ .Content }}
<ul>
{{ range .Pages }}
<li>
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</div>
{{ end }}