qenya.tel/layouts/_default/list.html
2024-06-30 16:40:31 +01:00

11 lines
258 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<article class="layout-post">
<h1 class="layout-post-title"><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h1>
{{ .Summary }}
</article>
{{ end }}
{{ end }}