16 lines
313 B
HTML
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>
|