www.kontakt-bamberg.de/layouts/galerie/section.html

15 lines
325 B
HTML
Raw Normal View History

2023-03-12 00:13:25 +01:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<section class="gallery">
{{ range .Pages }}
<a class="blur-on-hover" href="{{ .RelPermalink }}">
{{ with index (.Resources.ByType "image") 0 }}
<img alt="{{ .Title }}" src="{{ .RelPermalink }}">
2023-03-12 00:13:25 +01:00
{{ end }}
<p>{{ .Title }}</p>
</a>
{{ end }}
</section>
{{ end }}