24 lines
482 B
HTML
24 lines
482 B
HTML
|
{{/* 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 }}
|