Files
sumup/themes/basic/layouts/presentations/list.html

16 lines
267 B
HTML

{{ define "main" }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<section class="present">
<p>Gallery</p>
{{ range .Pages }}
<a href="{{ .RelPermalink }}">
<img alt="{{ .Title }}" style="width: 50px; height: 50px;">
</a>
{{ end }}
</section>
{{ end }}