ContainerImage.Pinniped/site/themes/pinniped/layouts/_default/list.html

15 lines
273 B
HTML
Raw Normal View History

2020-11-06 22:42:57 +00:00
{{ define "main" }}
<main>
{{ if or .Title .Content }}
<div>
{{ with .Title }}<h1>{{ . }}</h1>{{ end }}
{{ with .Content }}<div>{{ . }}</div>{{ end }}
</div>
{{ end }}
{{ range .Paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
</main>
{{ end }}