a
9aa43df629
The basic parts of the layouts/theme should work. I have only populated 2 albums so far.
17 lines
396 B
HTML
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 }} |