waltuh-hugo-theme/layouts/_default/list.html

17 lines
249 B
HTML
Raw Permalink Normal View History

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