Initial commit

This commit is contained in:
2025-11-10 16:31:08 +01:00
commit 3080726c9b
18 changed files with 685 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import JustifiedGallery from "./lib/gallery.js";
document.addEventListener("DOMContentLoaded", () => {
let element = document.getElementById("gallery")
new JustifiedGallery(element, {
wrapLinks: true,
});
})