Skip to content

Instantly share code, notes, and snippets.

@fdcore
Created February 11, 2016 05:57
Show Gist options
  • Save fdcore/d588e811612b53f3cdf8 to your computer and use it in GitHub Desktop.
Save fdcore/d588e811612b53f3cdf8 to your computer and use it in GitHub Desktop.
Simple menu on twig and bootstrap
{% set current_page = "users" %}
<div class="col-md-3">
{% set menu = {'users': 'Users', 'logout': 'Logout', 'test': 'Test page'} %}
<div class="list-group">
{% for k, v in menu %}<a class="list-group-item {{ current_page == k?'active' }}" href="/{{ k }}">{{ v }}</a>{% endfor %}
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment