mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 13:30:59 +00:00
26 lines
252 B
HTML
26 lines
252 B
HTML
1
|
|
|
|
{%- macro thrice(param) -%}
|
|
|
|
{{ param }} {{ param }} {{ param }}
|
|
|
|
{%- endmacro -%}
|
|
|
|
2
|
|
|
|
{%- call thrice(s) -%}{%- endcall -%}
|
|
|
|
3
|
|
|
|
{%- macro twice(param) -%}
|
|
|
|
{{ param }} {{ param }}
|
|
|
|
{%- endmacro twice -%}
|
|
|
|
4
|
|
|
|
{%- call twice(s) -%}{%- endcall -%}
|
|
|
|
5
|