aboutsummaryrefslogblamecommitdiffstats
path: root/testing/templates/macro-short-circuit.html
blob: 4a19b864b5a2a8033c2cb56fdf16d089647d797f (plain) (tree)
1
2
3
4
5
6
7
8
9








                                       
{% macro foo(b) -%}
    {{ b }}
{%- endmacro -%}
{% call foo(true) -%}
{% call foo(true && true) -%}
{% call foo(true && true && true) -%}
{% call foo(false) -%}
{% call foo(false || true) -%}
{% call foo(false || false || true) -%}