aboutsummaryrefslogtreecommitdiff
path: root/tests/data/template-with-logic/child.tmpl
blob: 42687b6620df33b4a2c23280713070cad5f305f4 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.tmpl" %}

{% block content -%}
	{{ "Hello World" | lower }}
	{% if 2 < 1 -%}
		2 is less than 1.
	{%- else -%}
		2 is more than 1.
	{%- endif %}
{%- endblock %}