blob: 84dec3ff9f630c1eb84ac67feec0cf0f17aed3ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{{- $src := .Get "src" -}}
{{- $alt := .Get "alt" | default "Image" -}}
{{- $caption := .Get "caption" -}}
{{- $class := .Get "class" | default "w-full h-auto rounded-lg border border-border" -}}
{{- $link := .Get "link" -}}
{{- $figureClass := .Get "figure-class" -}}
{{- if or $src .Inner -}}
<figure class="my-8{{- with $figureClass }} {{ . }}{{- end -}}">
{{- if .Inner -}}
{{- .Inner -}}
{{- else -}}
{{- if $link -}}<a href="{{ $link }}">{{- end -}}
<img src="{{ $src }}" alt="{{ $alt }}" class="{{ $class }}" loading="lazy" />
{{- if $link -}}</a>{{- end -}}
{{- end -}}
{{- if $caption -}}
<figcaption class="mt-3 text-center text-sm text-text-dim italic">{{ $caption }}</figcaption>
{{- end -}}
</figure>
{{- else -}}
{{- errorf "image shortcode: 'src' parameter or inner content is required" -}}
{{- end -}}
|