github.io/layouts/_default/list.html

15 lines
235 B
HTML
Raw Normal View History

{{ define "main" }}
2022-03-30 15:06:21 +00:00
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<ul class="contents">
{{ range .Pages }}
<li>
{{ partial "summary.html" . }}
</li>
{{ end }}
</ul>
</article>
{{ end }}