2019-11-13 23:38:50 +01:00
|
|
|
{% load sitetree %}
|
2019-12-11 23:19:28 +01:00
|
|
|
{% spaceless %}
|
|
|
|
{% autoescape off %}
|
2019-12-04 23:50:12 +01:00
|
|
|
<ul class="menu">
|
2019-11-13 23:38:50 +01:00
|
|
|
{% for item in sitetree_items %}
|
2019-12-11 23:19:28 +01:00
|
|
|
<li class="{% if item.has_children %}dropdown{% endif %} {% if item.is_current or item.in_current_branch %}active{% endif %}" >
|
2019-11-20 23:45:05 +01:00
|
|
|
<a href="{% sitetree_url for item %}" >
|
2019-11-13 23:38:50 +01:00
|
|
|
{{ item.title_resolved }}
|
|
|
|
</a>
|
|
|
|
<div class="submenu">
|
2019-11-20 23:45:05 +01:00
|
|
|
{% if item.is_current or item.in_current_branch %}
|
2019-11-13 23:38:50 +01:00
|
|
|
{% sitetree_children of item for menu template "submenu.html" %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2019-12-04 23:50:12 +01:00
|
|
|
<div class="submenu-newline">
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
$( ".submenu" ).prependTo( ".submenu-newline" ); {# api.jquery.com/prependTo #}
|
|
|
|
</script>
|
2019-11-13 23:38:50 +01:00
|
|
|
</ul>
|
2019-12-11 23:19:28 +01:00
|
|
|
{% endautoescape %}
|
|
|
|
{% endspaceless %}
|