Here is my current code:
{% for module in page.collection() %}
{% set index = loop.index %}
{{ module.content|raw }}
{% endfor %}
I'd like to access index
inside the module.html.twig
, or even better, the entire loop
variable.
How do I do that?