{{/* Partial used to display a thumbnail of an artwork. */}} {{ $full := printf "%s/thumb/%s.avif" $.Site.Params.image_host .Params.filename }} {{ $jpeg := printf "%s/thumb/%s.jpg" $.Site.Params.image_host .Params.filename }} {{ $grid_class := "grid-item" }} {{ if ge $.Params.aspect_ratio 1 }} {{ $grid_class = "grid-item-wide" }} {{ end }} {{ $title := .Title }} {{ $year := .Date.Format "2006" }} {{ with $full }} {{ $.Params.alt_text }} {{ $title }}, {{ $year }} {{ if $.Params.threed }} {{ with resources.Get "icons/3d.svg" }} 3D cube icon {{ end }} {{ else }} {{ if $.Params.comic }} {{ with resources.Get "icons/comic.svg" }} Comic icon {{ end }} {{ else }} {{ if $.Params.animation }} {{ with resources.Get "icons/animation.svg" }} Play animation icon {{ end }} {{ else }} {{ with resources.Get "icons/image.svg" }} Image icon {{ end }} {{ end }} {{ end }} {{ end }} {{ if $.Params.nsfw }} {{ with resources.Get "icons/warning.svg" }} Adult content icon {{ end }} {{ end }} {{ end }}