added 'chore' draft, tinkered

This commit is contained in:
2026-08-05 21:13:25 -04:00
parent 151c9d8be9
commit ba94aa3aea
64 changed files with 1004 additions and 143 deletions
+15
View File
@@ -0,0 +1,15 @@
<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>