github.io/layouts/index.html

15 lines
265 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'>
2022-03-30 15:06:21 +00:00
{{ range .Pages }}
2022-08-18 13:41:11 +00:00
<li><a href='{{ .RelPermalink }}'>
{{ partial "summary.html" . }}
</a></li>
2022-03-30 15:06:21 +00:00
{{ end }}
</ul>
</article>
{{ end }}