birdsounds.media/layouts/_default/favorites.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

17 lines
396 B
HTML

{{ define "main" }}
<main>
<header class="section">
<div class="container">
<h1>{{.Title}}</h1>
<p>{{.Summary}}</p>
</div>
</header>
<section class="section favorites-reel">
<div class="container">
{{ $reels := index .Site.Taxonomies "reels" }}
{{ $favorites := index $reels "favorites" }}
{{ partial "photos-grid.html" $favorites }}
</div>
</section>
</main>
{{ end }}