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

10 lines
300 B
HTML
Raw Normal View History

2023-03-12 00:13:25 +01:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<section class="gallery">
{{ range .Resources.ByType "image" }}
<div class="image"><img alt="{{ .Title }}" class="{{ if lt .Height .Width }}landscape{{ else }}portrait{{ end }}" src="{{ .RelPermalink }}"></div>
{{ end }}
</section>
{{ end }}