I am trying to get a gallery similar to the demo page (http://noelboss.github.io/featherlight/gallery.html) with the grav plugin. In particular browsing through the images.
I can display the thumbs and have a lightbox open when clicking, but I would like to be able to scroll through the images (next, previous). I don't know how to do that. The original documentation is too vague for me. and hard to translate to Grav, as I am just learning it.
My gallery.twig.html file:
'''
{% extends 'partials/base.html.twig' %}
{% block content %}
<div class="modular-row {{page.header.class}}">
<div style="text-align:center;">
<h2>{{page.header.title}}</h2>
</div>
<div style="text-align:center; width:100%; margin-left:auto; margin-right:auto; padding-bottom$
{% for image in page.media.images|sort %}
{{ image.lightbox(1024,768).cropResize(300,300).html() }}
{% endfor %}
</div>
<div style='text-align:center;">
{{content}}
</div>
</div>
{% endblock %}
'''