summaryrefslogtreecommitdiffstats
path: root/themes/danix-xyz-hacker/layouts/shortcodes/figure.html
blob: 27d6cb204b0d32794172b5619d609ac56b6a7499 (plain)
1
2
3
4
5
6
7
8
{{- $src := .Get "src" -}}
{{- $alt := .Get "alt" -}}
{{- $class := .Get "class" -}}
<figure class="my-6 {{ $class }}">
  {{- if $src -}}<img src="{{ $src }}" alt="{{ $alt }}" class="w-full" />{{ end -}}
  {{- .Inner -}}
  {{- if .Get "caption" -}}<figcaption class="text-sm text-text-dim mt-2">{{ .Get "caption" }}</figcaption>{{ end -}}
</figure>