1``keys``
2========
3
4The ``keys`` filter returns the keys of an array. It is useful when you want to
5iterate over the keys of an array:
6
7.. code-block:: jinja
8
9    {% for key in array|keys %}
10        ...
11    {% endfor %}
12