2024-09-30 17:40:46 -04:00
{{/* Page layout used for music page. */}}
2022-08-24 10:24:04 -04:00
{{ define "main" }}
< h2 > {{ .Title }}< / h2 >
2023-02-23 17:39:20 -05:00
< hr >
2025-01-03 13:13:22 -05:00
{{ with resources.Get "pics/pic-music.jpg" }}
< picture >
{{ $avif_path := replace . ".jpg" ".avif "}}
{{ with resources.Get (strings.TrimSpace $avif_path) }}
< source srcset = "{{ .RelPermalink }}" type = "image/avif" >
{{ end }}
< img class = "gallery-img page-pic" alt = "Drawing of an art gallery with several people standing around a piece hanging on the wall." width = "{{ .Width }}" height = "{{ .Height }}" src = "{{ .RelPermalink }}" >
< / picture >
{{ end }}
2022-08-24 10:24:04 -04:00
{{ .Content }}
{{ $art := (index site.Data ($.Param "json")) }}
{{ range $art.categories }}
2023-08-10 18:46:56 -04:00
{{ $.Scratch.Set "header-type" "h3" }}
{{ $.Scratch.Set "header-name" .name }}
{{ partial "fake-heading.html" $ }}
2022-08-24 10:24:04 -04:00
< p > {{ .description }}< / p >
{{ range sort .years "year" "desc" }}
2023-08-10 18:46:56 -04:00
{{ $.Scratch.Set "header-type" "h4" }}
{{ $.Scratch.Set "header-name" .year}}
{{ partial "fake-heading.html" $ }}
2022-08-24 10:24:04 -04:00
< div class = "gallery" >
{{ range .pieces }}
< figure >
{{ $full := resources.Get (printf "%s/%s" ($.Param "json") .filename) }}
2023-04-17 17:00:05 -04:00
< audio controls src = "{{ $full.RelPermalink }}" preload = "metadata" >
2022-08-24 10:28:56 -04:00
Your browser does not support audio.
2022-08-24 10:24:04 -04:00
< / audio >
< figcaption >
"{{ .title }}"
< / figcaption >
< / figure >
{{ end }}
< / div >
{{ end }}
{{ end }}
{{ end }}