Created
February 16, 2015 04:38
-
-
Save rtuita23/20e9d957a502ffb923a3 to your computer and use it in GitHub Desktop.
macros
This file contains 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
{% 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