9 lines
211 B
HTML
9 lines
211 B
HTML
|
{% for item in items %}
|
||
|
<a
|
||
|
href="#{{ item.id }}"
|
||
|
class="{{ Self::get_classes(self, item.current) }}"
|
||
|
aria-current="{% if item.current %}page{% endif %}"
|
||
|
>
|
||
|
{{ item.label }}
|
||
|
</a>
|
||
|
{% endfor %}
|