aboutsummaryrefslogtreecommitdiffstats
path: root/testing/templates/macro.html
blob: 30ea742e7e1547c3f6e0a0bbd90b87ca5e2edd1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
1

{%- macro thrice(param) -%}

{{ param }} {{ param }} {{ param }}

{%- endmacro -%}

2

{%- call thrice(s) -%}

3