erynwells.me/layouts/shortcodes/photo.html

10 lines
478 B
HTML
Raw Normal View History

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