aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/nested-macro.html
blob: 5030d59abbf7ca899838f7e8b0f027ab3012f449 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{%- macro child0() -%}
    foo
{%- endmacro -%}

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

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