bobatheme/layouts/shortcodes/figure.html

27 lines
764 B
HTML
Raw Normal View History

2021-10-19 12:40:34 -05:00
<figure>
{{ $img := $.Page.Resources.GetMatch (.Get "resrc") | resources.Fingerprint "sha512" }}
2021-10-19 12:40:34 -05:00
{{ if .Get "href" }}<a href="{{ .Get "href" }}">{{ end }}
<img src="{{ $img.Permalink }}"
2021-10-19 12:40:34 -05:00
{{ if or (.Get "alt") (.Get "caption") }}
alt="{{ with .Get "alt" -}}
{{ . -}}
{{ else -}}
{{ .Get "caption" | markdownify -}}
{{ end -}}"
2021-10-19 12:40:34 -05:00
{{ end }}
{{ with .Get "width" }} width="{{ . }}" {{ end }}
{{ with .Get "height" }} height="{{ . }}" {{ end }}
/>
{{ if .Get "href" }}</a>{{ end }}
{{ with .Get "caption" }}
<figcaption>
{{ . | markdownify }}
</figcaption>
{{ end }}
</figure>