Files
ffs/layouts/shortcodes/gallery.html
T
2026-08-05 21:13:25 -04:00

16 lines
313 B
HTML

<div class="image-gallery" style="display: flex; gap: 10px; justify-content: space-between;">
{{ .Inner }}
</div>
<style>
.image-gallery img {
flex: 1;
width: 100%;
height: auto;
object-fit: cover;
}
@media (max-width: 600px) {
.image-gallery { flex-direction: column; }
}
</style>