github.io/layouts/index.html

15 lines
265 B
HTML

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