mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 05:21:14 +00:00
12 lines
178 B
HTML
12 lines
178 B
HTML
{%- macro child0() -%}
|
|
foo
|
|
{%- endmacro -%}
|
|
|
|
{%- macro child1() -%}
|
|
{% call child0() %}
|
|
{%- endmacro -%}
|
|
|
|
{%- macro parent() -%}
|
|
{% call child1() %}
|
|
{%- endmacro -%}
|