mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-31 04:30:28 +00:00
15 lines
545 B
HTML
15 lines
545 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>
|