2022-10-30 11:31:47 -07:00
|
|
|
{{- with $photoPage := $.Page.GetPage (printf "photos/%s" (.Get 0)) -}}
|
2022-11-03 17:03:25 -07:00
|
|
|
{{- $thumbnail := partial "images/photo_thumbnail.html" (dict "Page" . "Width" 1280 "Height" 1280) -}}
|
|
|
|
{{- $altText := $thumbnail.Params.alt | default .Title -}}
|
|
|
|
<a href="{{ .RelPermalink }}" title="{{ .Title }}">
|
|
|
|
<img src="{{ $thumbnail.RelPermalink }}"{{ with $altText }} alt="{{ . }}"{{ end }}>
|
|
|
|
</a>
|
2022-10-30 11:31:47 -07:00
|
|
|
{{- else -}}
|
2022-11-03 17:03:25 -07:00
|
|
|
{{- errorf "No page matching '%s'" (.Get 0) -}}
|
2022-10-30 11:31:47 -07:00
|
|
|
{{- end -}}
|