Krys4lide/crates/app/templates/layout/nav/nav-menu-items.html

9 lines
211 B
HTML
Raw Normal View History

{% 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 %}