{% extends extending %} {% block content %} This is inside the "content" block in the page template. A variable from the context: {{ greeting }} Some cyrillic unicode: Тхис ис соме уницоде теџт. Дис из сам јуникоуд текст. {% if four > five %} {{four}} is bigger than {{five}} {% else if five > 6 %} {{five}} is bigger than 6? {% else %} The world is sane after all. {% endif %} {% for i in array %} {% if i < 2 %} {% include file %} {% else %} {% include "included.html" %} {% if i == 3 %} Nested If i == 3 {% else %} Nested Else {% endif %} {% endif %} {% endfor %} {% if "some string" == "some string" %} some string == some string {% endif %} {% if greeting == "This text is a variable defined in the view." %} greeting == This text is a variable defined in the view. {% endif %} {% if 'foo bar' != 'bar foo' %} foo bar != bar foo {% endif %} {% endblock %}