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

15 lines
342 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 }}
2023-03-12 20:25:00 +01:00
<img alt="{{ .Title }}" src="{{ (.Fill "560x560").RelPermalink }}">
2023-03-12 00:13:25 +01:00
{{ end }}
<p>{{ .Title }}</p>
</a>
{{ end }}
</section>
{{ end }}