Files
my-website/templates/shortcodes/image.html
2025-06-14 23:23:13 +05:30

11 lines
315 B
HTML

<div class="flex justify-center my-4">
<img
src="{{ get_url(path=url) | safe }}"
alt="{{ page.title }}"
class="max-w-full max-h-100 object-cover border border-gray-600 rounded-2xl"
loading="lazy"
decoding="async"
onclick="openFullscreenImage(this)"
/>
</div>