This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/_partials/figure.html.twig

9 lines
271 B
Twig
Raw Permalink Normal View History

2019-07-15 11:33:30 +00:00
<figure class="block">
<img src="{{ image.src }}" alt="{{ image.alt }}" class="p-1 border">
{% if caption %}
2020-03-09 14:09:05 +00:00
<figcaption class="mt-1 mb-0 italic text-sm text-center text-gray-800">
2019-07-15 11:33:30 +00:00
{{ caption }}
</figcaption>
{% endif %}
</figure>