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") }}
|
2024-11-04 17:51:51 -05:00
|
|
|
{{ if and (eq (.Date.Format "2006") $.Title) (not (.Params.guest)) }}
|
2024-09-30 17:40:46 -04:00
|
|
|
{{ partial "render-art" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
</div>
|
2025-01-03 10:21:25 -05:00
|
|
|
{{ end }}
|
2024-09-30 17:40:46 -04:00
|
|
|
|
2025-01-03 10:21:25 -05:00
|
|
|
{{ define "head" }}
|
2024-09-30 17:40:46 -04:00
|
|
|
{{ partial "gallery-js" . }}
|
|
|
|
{{ end }}
|