redstrate.com/themes/red/layouts/_default/year-gallery.html

24 lines
482 B
HTML
Raw Normal View History

2024-09-30 17:40:46 -04:00
{{/* Used for the "2020" and other year gallery pages, for example. */}}
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ .Content }}
<div class="grid">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
{{ range (where .Site.RegularPages "Type" "art") }}
{{ if eq (.Date.Format "2006") $.Title }}
{{ partial "render-art" . }}
{{ end }}
{{ end }}
</div>
{{ partial "gallery-js" . }}
{{ end }}