github.io/layouts/_default/list.html
Sivert V. Sæther d21051adde Anotha lil dump
Think I'm finally finished fiddling with the devops stuff and ready to
finally focus on the content! 😁
2022-04-08 00:04:12 +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 }}