{{ ... }} # Escaping for expressions that create output
{% ... %} # Escaping for control statements
# ... ## # Line statements
{% for i in list %} ... {% endfor %}
Defining functions
{% macro myfunct(param1, param2) %}
...
{% endmacro %}
Using functions
{% myfunc(var, 5) %}