hugo-saasify-theme/layouts/shortcodes/figure.html
2024-11-20 23:09:07 +11:00

18 lines
467 B
HTML

{{ $src := .Get "src" }}
{{ $alt := .Get "alt" }}
{{ $caption := .Get "caption" }}
{{ $class := .Get "class" | default "w-full" }}
<figure class="my-8">
<img
src="{{ $src }}"
alt="{{ $alt }}"
class="{{ $class }} rounded-lg shadow-lg"
loading="lazy"
>
{{ with $caption }}
<figcaption class="mt-2 text-center text-sm text-gray-600">
{{ . | markdownify }}
</figcaption>
{{ end }}
</figure>