Skip to content
Snippets Groups Projects
Unverified Commit 90c0c8d8 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Use provided bootstrap-navbar template.

parent 057cff75
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,9 @@
<div class="collapse navbar-collapse" id="navbar-main">
{% generate_menu %}
{% with menu=menus.exnomo %}{% include "core/menu.html" %}{% endwith %}
<ul class="nav navbar-nav navbar-right">
{% with menu=menus.main %}{% include "bootstrap-navbar.html" %}{% endwith %}
</ul>
</div>
</div>
</nav>
......
<ul class="nav navbar-nav navbar-right">
{% for item in menu %}
{% if item.separator %}<li role="separator" class="divider"></li>{% endif %}
<li><a href="{{ item.url }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment