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

25 lines
646 B
HTML
Raw Normal View History

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