Skip to content

Instantly share code, notes, and snippets.

@mike1e
Created November 23, 2013 04:34
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 mike1e/7610855 to your computer and use it in GitHub Desktop.
Save mike1e/7610855 to your computer and use it in GitHub Desktop.
Jinja2 / Bootstrap Navigation Active Page highlighting
<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