2016-06-26 22:01:42 +00:00
|
|
|
{% load sitetree %}
|
2016-06-30 07:25:50 +00:00
|
|
|
<div data-menu class="mobile-menu">
|
|
|
|
<ul class="mobile-menu--list">
|
2016-06-26 22:01:42 +00:00
|
|
|
{% for item in sitetree_items %}
|
2016-06-30 07:25:50 +00:00
|
|
|
<li class="mobile-menu--item mobile-menu--item__primary">
|
|
|
|
<a href="{% if item.has_children %}#{% else %}{% sitetree_url for item %}{% endif %}"
|
|
|
|
{% if item.has_children %}
|
|
|
|
class="l-header--nav dropdown-toggle {% if item.is_current or item.in_current_branch %}active{% endif %}"
|
|
|
|
data-toggle="dropdown"
|
|
|
|
{% else %}
|
|
|
|
class="l-header--nav {% if item.is_current or item.in_current_branch %}active{% endif %}"
|
|
|
|
{% endif %}
|
|
|
|
>
|
|
|
|
{{ item.title_resolved }}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% if item.has_children %}
|
2016-06-26 22:01:42 +00:00
|
|
|
{% sitetree_children of item for menu template "sitetree_opener_dropdown.html" %}
|
2016-06-30 07:25:50 +00:00
|
|
|
{% endif %}
|
2016-06-26 22:01:42 +00:00
|
|
|
{% endfor %}
|
2016-06-30 07:25:50 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|