birdsounds.media/layouts/_default/all-photos.html

18 lines
391 B
HTML
Raw Permalink Normal View History

{{ define "main" }}
{{ if not hugo.IsProduction }}
<aside class="development-info">
<p>template: all-photos.html</p>
{{debug.Dump .}}
</aside>
{{ end }}
<main>
<header class="section">
<div class="container">
</div>
</header>
<section class="all-photos">
{{ $photos := where .RegularPages "Type" "photos" }}
{{ partial "photos-grid.html" $photos }}
</section>
</main>
{{ end }}