blob: 35eb0bbb3ae39da3b00bc48d2e7c749dbb7d7efb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{% extends "base.html" %}
{# Testing named "endmacro" #}
{% macro foo(b) -%}
{% if b %}t{% else %}f{% endif -%}
{% endmacro foo -%}
{# Testing named endblock declaration #}
{% block what %}{% endblock what %}
{# Testing named endblock call #}
{% block foo %}tadam{% endblock foo %}
|