mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
12 lines
204 B
HTML
12 lines
204 B
HTML
{%- macro child0() -%}
|
|
foo
|
|
{%- endmacro -%}
|
|
|
|
{%- macro child1() -%}
|
|
{% call child0() %}{% endcall %}
|
|
{%- endmacro -%}
|
|
|
|
{%- macro parent() -%}
|
|
{% call child1() %}{% endcall %}
|
|
{%- endmacro -%}
|