2022-08-02 14:05:56 -04:00
|
|
|
{{ define "main" }}
|
2022-08-03 13:38:29 -04:00
|
|
|
{{ .Content }}
|
2022-08-02 14:05:56 -04:00
|
|
|
|
2022-08-03 13:38:29 -04:00
|
|
|
{{ $art := site.Data.art }}
|
2022-08-02 14:05:56 -04:00
|
|
|
|
2022-08-03 13:38:29 -04:00
|
|
|
{{ range $art.categories }}
|
|
|
|
<h2>{{ .name }}</h2>
|
|
|
|
{{ range sort .years "year" "desc" }}
|
|
|
|
<h3>{{ .year }}</h3>
|
|
|
|
{{ range .pieces }}
|
|
|
|
<figure>
|
|
|
|
{{ $thumb := resources.Get (printf "art-thumbs/%s" .filename) }}
|
|
|
|
{{ $full := resources.Get (printf "art/%s" .filename) }}
|
2022-08-02 14:05:56 -04:00
|
|
|
|
2022-08-03 13:38:29 -04:00
|
|
|
<a href="{{ $full.Permalink }}">
|
|
|
|
<img width="128px" height="128px" src="{{ $thumb.Permalink }}"/>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<figcaption>"{{ .title }}"</figcaption>
|
|
|
|
</figure>
|
|
|
|
{{ end }}
|
2022-08-02 14:05:56 -04:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|