summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/gal-img.html
blob: ae7d23e90eea0a6f0ec6c812a98e85d00c662416 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{- $src := .Get "src" -}}
{{- $source := resources.Get $src -}}
{{- $alt := .Get "alt" -}}
{{- $caption := .Get "caption" -}}
{{- $location := .Get "location" -}}
{{- $fullsize := $source -}}
{{- $thumb := $source.Resize "400x webp" -}}
<figure class="photo-card"
  data-photo-index="{{ .Ordinal }}"
  data-src="{{ $fullsize.RelPermalink }}"
  data-alt="{{ $alt }}"
  data-caption="{{ $caption }}"
  data-location="{{ $location }}">
  <img src="{{ $thumb.RelPermalink }}" alt="{{ $alt }}" loading="lazy">
  {{ with $caption }}<figcaption>{{ . }}</figcaption>{{ end }}
</figure>