Hi,
It might not be the right place to ask for help but I am trying to implement a photo gallery using shortcode provided here.
I added
/layout/shortcodes/gallery.html
/layout/shortcodes/load-photoswipe.html
/static/js/load-photoswipe.js
/static/css/hugo-easy-gallery.css
I also added below code in my theme/hugo-geo/layouts/partials/footer.html before tag
{{ if ($.Scratch.Get “photoswipeloaded”) }}
{{ end }}
and I also added a folder in static/img/myfolder path
and using the below line in markdown file
{{< gallery dir="/img/myfolder/" />}} {{< load-photoswipe >}}
but I cant get the images properly, they overlap.
Also, they are just images but the click event doesn’t work with them opening the gallery.
Am I missing something?
Here is the link to repo where I am trying to implement it.