Reputation: 3
First time posting so forgive me in advance.
I'm building out an image gallery. I'm using Twig. Currently my Slick carousel gallery counter is displaying "1 / 4" items in my gallery. That's all kosher. Where I'm stumped is I'm trying to append a "0" so that the slide display reads "01/04".
Here is the HTML/Twig:
<div class="nav-controls">
{% if gallery %}
<div class="gallery-count"><span id="current-slide">1</span> / {{ gallery.images|length }}</div>
{% endif %}
<section role="navigation" class="gallery-arrows{% if gallery %} active{% endif %}">
<div class="buttons">
<div class="prev"></div>
<div class="next"></div>
</div>
</section>
</div>
Is there not a way to do this with Twig?
Thank you!
Upvotes: 0
Views: 287