Skip to content

Instantly share code, notes, and snippets.

@keiosweb
Last active October 15, 2015 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keiosweb/79d255e42ddddf2573d7 to your computer and use it in GitHub Desktop.
Save keiosweb/79d255e42ddddf2573d7 to your computer and use it in GitHub Desktop.
SimpleMenu Raw
<!-- Static navbar -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
{% for menu in __SELF__.simpleMenu %}
<li class="{% if this.page.url == '{{ menu.url }}' %}active{% endif %}"><a href="{{ menu.url }}">{{ menu.title|_ }}</a></li>
{% endfor %}
</ul>
</div><!--/.nav-collapse -->
</div><!--/.container-fluid -->
</nav>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment