aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/nested-macro.html
blob: 4a40cd9bd1677b88101c545ed35bc84e086bd968 (plain) (blame)
1
2
3
4
5
6
7
{%- macro child() -%}
    foo
{%- endmacro -%}

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