2022-02-03 00:37:09 +00:00
|
|
|
{{ if .Get "default" }}
|
|
|
|
{{ template "_internal/shortcodes/figure.html" . }}
|
2022-01-12 03:21:22 +00:00
|
|
|
{{ else }}
|
2023-09-12 20:16:14 +00:00
|
|
|
{{ $src := .Get "src" }}
|
|
|
|
{{ $alt := .Get "alt" }}
|
2022-02-03 00:37:09 +00:00
|
|
|
{{ $caption := .Get "caption" }}
|
|
|
|
{{ $href := .Get "href" }}
|
|
|
|
{{ $class := .Get "class" }}
|
2023-01-14 00:24:41 +00:00
|
|
|
<figure{{ with $class }} class="{{ . }}"{{ end }}>
|
|
|
|
{{ with $href }}<a href="{{ . }}">{{ end }}
|
2023-09-12 20:16:14 +00:00
|
|
|
{{ partial "picture.html" (dict "context" . "src" $src "alt" $alt) }}
|
2023-01-14 00:24:41 +00:00
|
|
|
{{ with $href }}</a>{{ end }}
|
|
|
|
{{ with $caption }}<figcaption class="text-center">{{ . | markdownify }}</figcaption>{{ end }}
|
|
|
|
</figure>
|
2022-08-18 04:59:46 +00:00
|
|
|
{{ end }}
|