Created
November 23, 2013 04:34
-
-
Save mike1e/7610855 to your computer and use it in GitHub Desktop.
Jinja2 / Bootstrap Navigation Active Page highlighting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="nav nav-pills pull-right"> | |
{%- for endpoint, caption in [ | |
('index', 'Index'), | |
('add_user', 'Add User') | |
] %} | |
<li{% if endpoint == request.endpoint %} class="active"{% endif %}> | |
<a href={{ url_for(endpoint) }}>{{ caption }}</a> | |
</li> | |
{%- endfor %} | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment