djLint/tests/django_cms/cms/toolbar/items/menu.html
2021-08-02 13:06:56 -05:00

14 lines
564 B
HTML

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