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:20:24 +01:00
|
|
|
<img alt="{{ .Title }}" src="{{ .RelPermalink }}">
|
2023-03-12 00:13:25 +01:00
|
|
|
{{ end }}
|
|
|
|
<p>{{ .Title }}</p>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</section>
|
|
|
|
{{ end }}
|