mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-29 05:51:32 +00:00
10 lines
187 B
HTML
10 lines
187 B
HTML
{%- macro outer(first) -%}
|
|
{%- call inner(first, "second") -%}
|
|
{%- endmacro -%}
|
|
|
|
{%- macro inner(first, second) -%}
|
|
{{ first }} {{ second }}
|
|
{%- endmacro -%}
|
|
|
|
{%- call outer("first") -%}
|