djLint/tests/django_cms/cms/toolbar/items/menu.html

15 lines
564 B
HTML
Raw Normal View History

2021-07-29 18:41:34 +00:00
<li class="{% if sub_level %}cms-toolbar-item-navigation-children {% endif %}{% if active %}cms-toolbar-item-navigation-active {% endif %}{% if disabled %}cms-toolbar-item-navigation-disabled {% endif %}">
2021-08-02 14:18:05 +00:00
<a
{% if disabled %}tabindex="-1" {% endif %}
href="{{ url }}">
<span>
{{ title }}
<span class="cms-icon cms-icon-arrow"></span></span>
</a>
{% if items %}
<ul>
{% for item in items %}{{ item.render }}{% endfor %}
</ul>
{% endif %}
</li>