babashka/test-resources/lib_tests/templates/if.html
2021-05-06 12:53:59 +02:00

22 lines
No EOL
226 B
HTML

{% if foo %}
<h1>FOO!</h1>
{% endif %}
{% if bar %}
<h1>BAR!</h1>
{% else %}
<h1>NOT BAR!</h1>
{% endif %}
{% if user-id %}
"foo"
{% else %}
"bar"
{% endif %}
{% if nested %}
{% if inner %}
inner
{% endif %}
{% endif %}