askama/testing/templates/nested-macro.html

12 lines
178 B
HTML

{%- macro child0() -%}
foo
{%- endmacro -%}
{%- macro child1() -%}
{% call child0() %}
{%- endmacro -%}
{%- macro parent() -%}
{% call child1() %}
{%- endmacro -%}