birdsounds.media/layouts/_default/all-photos.html
a 9aa43df629 First commit
The basic parts of the layouts/theme should work. I have only populated 2 albums so far.
2024-05-17 21:14:05 -05:00

18 lines
391 B
HTML

{{ 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 }}