blob: 97d95c7268e216b9bba88261ac6fc067e080d2a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<ul class="navbar-nav action-menu justify-content-start">
{% with MENU.current_section as section_label %}
{% with MENU.current_sections as sections %}
{% include "blocks/action_list.html" %}
{% endwith %}{% endwith %}
{% if MENU.current_subsections %}
<li class="nav-item d-none d-lg-block">
<span class="nav-link">›</span>
</li>
{% with MENU.current_subsection as section_label %}
{% with MENU.current_subsections as sections %}
{% include "blocks/action_list.html" %}
{% endwith %}{% endwith %}
{% endif %}
{% if MENU.current_subsubsections %}
<li class="nav-item d-none d-lg-block">
<span class="nav-link">›</span>
</li>
{% with MENU.current_subsubsection as section_label %}
{% with MENU.current_subsubsections as sections %}
{% include "blocks/action_list.html" %}
{% endwith %}{% endwith %}
{% endif %}
</ul>
|