9 lines
271 B
Twig
9 lines
271 B
Twig
<figure class="block">
|
|
<img src="{{ image.src }}" alt="{{ image.alt }}" class="p-1 border">
|
|
{% if caption %}
|
|
<figcaption class="mt-1 mb-0 italic text-sm text-center text-gray-800">
|
|
{{ caption }}
|
|
</figcaption>
|
|
{% endif %}
|
|
</figure>
|