9 lines
236 B
Plaintext
9 lines
236 B
Plaintext
{% macro urlify(url, title, suffix) %}
|
|
{% autoescape false %}
|
|
{% if static %}
|
|
<a href="{{url}}.{{suffix}}">{{title}}</a>
|
|
{% else %}
|
|
<a href="{{url}}">{{title}}</a>
|
|
{% endif %}
|
|
{% endautoescape %}
|
|
{% endmacro %} |