epub/layouts/shortcodes/image.html
2021-02-03 11:28:19 +01:00

12 lines
412 B
HTML

{{ $src := .Get "src" }}{{ $src = print "*" $src "*" -}}
{{- $size := .Site.Params.imgsize -}}
{{- $caption := .Get "caption" -}}
{{- with $.Page.Resources.Match $src -}}
{{- range first 1 . -}}
{{- $scaled := .Resize $size -}}
<figure>
<img src="{{ $scaled.RelPermalink }}" alt="{{ $caption | default $.Page.Title }}" />
<figcaption>{{ $caption }}</figcaption>
</figure>
{{- end -}}
{{- end -}}