github.io/layouts/_default/list.html
Sivert V. Sæther 7123b8a409 Update dump
Also testing removal of the CNAME file!
😁
2022-04-07 15:52:18 +00:00

16 lines
282 B
HTML

{{ define "main" }}
<article>
<header>
<h1>{{ .Title }}</h1>
</header>
{{ .Content }}
<ul class="contents">
{{ range .Pages }}
<br />
<a href='{{ .RelPermalink }}'>
<li>{{ partial "summary.html" . }}</li>
</a>
{{ end }}
</ul>
</article>
{{ end }}