Skip to content

Instantly share code, notes, and snippets.

@rtuita23
Created February 16, 2015 04:38
Show Gist options
  • Save rtuita23/20e9d957a502ffb923a3 to your computer and use it in GitHub Desktop.
Save rtuita23/20e9d957a502ffb923a3 to your computer and use it in GitHub Desktop.
macros
{% macro nav_link(endpoint, name) %}
{% if request.endpoint.endswith(endpoint) %}
<a href="{{ url_for(endpoint) }}" class="active">{{name}}</a>
{% else %}
<a href="{{ url_for(endpoint) }}">{{name}}</a>
{% endif %}
{% endmacro %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment