Replaced GliderJs with SplideJS

Update .gitmodules, head.php, and 10 more files...
This commit is contained in:
2023-12-15 15:27:45 +01:00
parent 6f6f3af8af
commit 0f63ab3371
12 changed files with 48 additions and 105 deletions
@@ -0,0 +1,14 @@
// Creating the galleries with SplideJs
window.addEventListener('load', function() {
new Splide( '.splide', {
perPage: 2,
cover: true,
heightRatio: 0.4,
breakpoints: {
768: {
perPage: 1,
},
},
} ).mount();
});