bar-filipo.de/layouts/partials/gallery-headless.html

14 lines
360 B
HTML

{{ with .Site.GetPage "/gallery" }}
<section class="wrapper style1 align-center" id="{{ .Params.id }}">
<div class="inner">
<h2>{{ .Title }}</h2>
<p>{{ .Content }}</p>
</div>
<div class="gallery {{ .Params.style }}">
{{ range .Resources.ByType "image" }}
{{ partial "picture" . }}
{{ end }}
</div>
</section>
{{ end }}