Template Designers
This document describes the syntax and semantics of the template engine and will be most useful as reference to those creating Twig templates.
Synopsis
A template is a regular text file. It can generate any text-based format
(HTML, LaTeX, js etc.). It doesn't have a specific extension,
.liquid
or .html
are just fine. But we prefer to stick on .liquid
as written in the all documentation pages.
A template contains variables or expressions, which get replaced with values when the template is evaluated, and tags, which control the template's logic.
Below is a minimal template that illustrates a few basics. We will cover further details later on:
<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<ul id="navigation">
{% for item in navigation %}
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
{% endfor %}
</ul>
<h1>My Webpage</h1>
{{ a_variable }}
</body>
</html>
There are two kinds of delimiters: {% ... %}
and {{ ... }}
. The
first one is used to execute statements such as for-loops, the latter
outputs the result of an expression.
Variables
The application passes variables to the templates for manipulation in the template. Variables may have attributes or elements you can access, too. The visual representation of a variable depends heavily on the application providing it.
Use a dot (.
) to access attributes of a variable (methods or
properties of a object, or items of a array):
{{ foo.bar }}
It's important to know that the curly braces are not part of the variable but the print statement. When accessing variables inside tags, don't put the braces around them.
Sidebar Implementation
For convenience's sake foo.bar
does the following things
layer:
- check if
foo
is a sequence or a mapping andbar
a valid element; - if not, and if
foo
is an object, check thatbar
is a valid property; - if not, and if
foo
is an object, check thatbar
is a valid method (even ifbar
is the constructor - use__construct()
instead); - if not, and if
foo
is an object, check thatgetBar
is a valid method; - if not, and if
foo
is an object, check thatisBar
is a valid method; - if not, and if
foo
is an object, check thathasBar
is a valid method; - if not, and if
strict_variables
isfalse
, returnnull
; - if not, throw an exception.
We also support a specific syntax for accessing items on arrays,
foo['bar']
:
- check if
foo
is a sequence or a mapping andbar
a valid element; - if not, and if
strict_variables
isfalse
, returnnull
; - if not, throw an exception.
The attribute
function is also useful when the attribute contains
special characters (like -
that would be interpreted as the minus
operator):
{# equivalent to the non-working foo.data-foo #}
{{ attribute(foo, 'data-foo') }}
Global Variables
The following variables are always available in templates:
_self
: references the current template name;_context
: references the current context;_charset
: references the current charset.
Setting Variables
You can assign values to variables inside code blocks. Assignments use the #assign tag:
{% assign foo = 'foo' %}
{% assign foo = [1, 2] %}
{% assign foo = {'foo': 'bar'} %}
Filters
Variables can be modified by filters. Filters are separated from the
variable by a pipe symbol (|
). Multiple filters can be chained. The
output of one filter is applied to the next.
The following example removes all HTML tags from the name
and
title-cases it:
{{ name|striptags|title }}
Filters that accept arguments have parentheses around the arguments. This example joins the elements of a list by commas:
{{ list | join(', ') }}
To apply a filter on a section of code, wrap it with the #apply tag:
{% apply upper %}
This text becomes uppercase
{% endapply %}
Go to the filters<filters/index>
page to
learn more about built-in filters.
Functions
Functions can be called to generate content. Functions are called by
their name followed by parentheses (()
) and may have arguments.
For instance, the range
function returns a list containing an
arithmetic progression of integers:
{% for i in range(0, 3) %}
{{ i }},
{% endfor %}
Go to the functions<functions/index>
rolepage to learn more about the built-in functions.
Named Arguments
Named arguments are supported in functions, filters and tests.
{% for i in range(low=1, high=10, step=2) %}
{{ i }},
{% endfor %}
Using named arguments makes your templates more explicit about the meaning of the values you pass as arguments:
{{ data | convert_encoding('UTF-8', 'iso-2022-jp') }}
{# versus #}
{{ data | convert_encoding(from='iso-2022-jp', to='UTF-8') }}
Named arguments also allow you to skip some arguments for which you don't want to change the default value:
{# the first argument is the date format, which defaults to the global date format if null is passed #}
{{ "now" | date(null, "Europe/Paris") }}
{# or skip the format value by using a named argument for the time zone #}
{{ "now" | date(timezone="Europe/Paris") }}
You can also use both positional and named arguments in one call, in which case positional arguments must always come before named arguments:
{{ "now" | date('d/m/Y H:i', timezone="Europe/Paris") }}
Each function and filter documentation page has a section where the names of all arguments are listed when supported.
Control Structure
A control structure refers to all those things that control the flow of
a program - conditionals (i.e. if
/elseif
/else
), for
-loops, as
well as things like blocks. Control structures appear inside {% ... %}
blocks.
For example, to display a list of users provided in a variable called
users
, use the for<tags/for>
role:
<h1>Members</h1>
<ul>
{% for user in users %}
<li>{{ user.username | e }}</li>
{% endfor %}
</ul>
The if<tags/if>
role can be used to test
an expression:
{% if users|length > 0 %}
<ul>
{% for user in users %}
<li>{{ user.username | e }}</li>
{% endfor %}
</ul>
{% endif %}
Go to the #tags role to learn more about the built-in tags.
Comments
To comment-out part of a line in a template, use the comment syntax
{# ... #}
. This is useful for debugging or to add information for
other template designers or yourself:
{# note: disabled template because we no longer use this
{% for user in users %}
...
{% endfor %}
#}
Including other Templates
The #render role is useful to include a template and return the rendered content of that template into the current one:
{% render "partials/some.liquid" %}
By default, included templates have access to the same context as the template which includes them. This means that any variable defined in the main template will be available in the included template too:
{% for box in boxes %}
{% render "partials/some.liquid" %}
{% endfor %}
The included template render_box.liquid
is able to access the box
variable.
The name of the template depends on the template loader. You can access templates in subdirectories with a slash:
{% render "partials/some.liquid" %}
This behavior depends on the application embedding.
Template Inheritance
The most powerful part is template inheritance. Template inheritance allows you to build a base "skeleton" template that contains all the common elements of your site and defines blocks that child templates can override.
It's easier to understand the concept by starting with an example.
Let's define a base template, base.liquid
, which defines an HTML
skeleton document that might be used for a two-column page:
<!DOCTYPE html>
<html>
<head>
{% block head %}
<link rel="stylesheet" href="style.css"/>
<title>{% block title %}{% endblock %} - My Webpage</title>
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
© Copyright 2011 by <a href="https://example.com/">you</a>.
{% endblock %}
</div>
</body>
</html>
In this example, the block<tags/block>
roletags define four blocks that child templates can fill in. All the
block
tag does is to tell the template engine that a child template
may override those portions of the template.
A child template might look like this:
{% layout "base.liquid" %}
{% block title %}Index{% endblock %}
{% block head %}
{{ parent() }}
<style type="text/css">
.important { color: #336699; }
</style>
{% endblock %}
{% block content %}
<h1>Index</h1>
<p class="important">
Welcome to my awesome homepage.
</p>
{% endblock %}
The layout role is the key here. It tells the template engine that this template "extends" another template. When the template system evaluates this template, first it locates the parent. The extends tag should be the first tag in the template.
Note that since the child template doesn't define the footer
block,
the value from the parent template is used instead.
It's possible to render the contents of the parent block by using the
parent<functions/parent>
role. This
gives back the results of the parent block:
{% block sidebar %}
<h3>Table Of Contents</h3>
...
{{ parent() }}
{% endblock %}
The documentation page for the extends<tags/extends>
tag describes more advanced features like block nesting,
scope, dynamic inheritance, and conditional inheritance.
We also supports multiple inheritance via "horizontal reuse" with
the help of the use<tags/use>
role.
HTML Escaping
When generating HTML from templates, there's always a risk that a variable will include characters that affect the resulting HTML. There are two approaches: manually escaping each variable or automatically escaping everything by default.
We support both, automatic escaping is enabled by default.
Working with Manual Escaping
If manual escaping is enabled, it is your responsibility to escape variables if needed. What to escape? Any variable that comes from an untrusted source.
Escaping works by using the escape<filters/escape>
or e
filter:
{{ user.username | e }}
By default, the escape
filter uses the html
strategy, but depending
on the escaping context, you might want to explicitly use another
strategy:
{{ user.username | e('js') }}
{{ user.username | e('css') }}
{{ user.username | e('url') }}
{{ user.username | e('html_attr') }}
Working with Automatic Escaping
Whether automatic escaping is enabled or not, you can mark a section of
a template to be escaped or not by using the
autoescape<tags/autoescape>
role:
{% autoescape %}
Everything will be automatically escaped in this block (using the HTML strategy)
{% endautoescape %}
By default, auto-escaping uses the html
escaping strategy. If you
output variables in other contexts, you need to explicitly escape them
with the appropriate escaping strategy:
{% autoescape 'js' %}
Everything will be automatically escaped in this block (using the JS strategy)
{% endautoescape %}
Escaping
It is sometimes desirable or even necessary to have Twig ignore parts it
would otherwise handle as variables or blocks. For example if the
default syntax is used and you want to use {{
as raw string in the
template and not start a variable you have to use a trick.
The easiest way is to output the variable delimiter ({{
) by using a
variable expression:
{{ '{{' }}
For bigger sections it makes sense to mark a block
verbatim<tags/verbatim>
role
Macros
Macros are comparable with functions in regular programming languages.
They are useful to reuse HTML fragments to not repeat yourself. They are
described in the macro<tags/macro>
role
documentation.
Expressions
We allow expressions everywhere.
Literals
The simplest form of expressions are literals. Literals are representations for types such as strings, numbers, and arrays. The following literals exist:
-
"Hello World"
: Everything between two double or single quotes is a string. They are useful whenever you need a string in the template (for example as arguments to function calls, filters or just to extend or include a template). A string can contain a delimiter if it is preceded by a backslash (\
) -- like in'It\'s good'
. If the string contains a backslash (e.g.'c:\Program Files'
) escape it by doubling it (e.g.'c:\\Program Files'
). -
42
/42.23
: Integers and floating point numbers are created by writing the number down. If a dot is present the number is a float, otherwise an integer. -
["foo", "bar"]
: Sequences are defined by a sequence of expressions separated by a comma (,
) and wrapped with squared brackets ([]
). -
{"foo": "bar"}
: Mappings are defined by a list of keys and values separated by a comma (,
) and wrapped with curly braces ({}
):{# keys as string #}
{'foo': 'foo', 'bar': 'bar'}
{# keys as names (equivalent to the previous mapping) #}
{foo: 'foo', bar: 'bar'}
{# keys as integer #}
{2: 'foo', 4: 'bar'}
{# keys can be omitted if it is the same as the variable name #}
{foo}
{# is equivalent to the following #}
{'foo': foo}
{# keys as expressions (the expression must be enclosed into parentheses) #}
{% assign foo = 'foo' %}
{(foo): 'foo', (1 + 1): 'bar', (foo ~ 'b'): 'baz'} -
true
/false
:true
represents the true value,false
represents the false value. -
null
:null
represents no specific value. This is the value returned when a variable does not exist.none
is an alias fornull
.
Sequences and mappings can be nested:
{% assign foo = [1, {"foo": "bar"}] %}
Using double-quoted or single-quoted strings has no impact on
performance but
string interpolation <templates-string-interpolation>
is only supported in double-quoted strings.
String Interpolation
String interpolation (#{expression}
) allows any valid expression to
appear within a double-quoted string. The result of evaluating that
expression is inserted into the string:
{{ "foo #{bar} baz" }}
{{ "foo #{1 + 2} baz" }}
Math
We allow you to do math in templates; the following operators are supported:
+
: Adds two numbers together (the operands are casted to numbers).{{ 1 + 1 }}
is2
.-
: Subtracts the second number from the first one.{{ 3 - 2 }}
is1
./
: Divides two numbers. The returned value will be a floating point number.{{ 1 / 2 }}
is{{ 0.5 }}
.%
: Calculates the remainder of an integer division.{{ 11 % 7 }}
is4
.//
: Divides two numbers and returns the floored integer result.{{ 20 // 7 }}
is2
,{{ -20 // 7 }}
is-3
(this is just syntactic sugar for theround<filters/round>
filter).*
: Multiplies the left operand with the right one.{{ 2 * 2 }}
would return4
.**
: Raises the left operand to the power of the right operand.{{ 2 ** 3 }}
would return8
.
Logic
You can combine multiple expressions with the following operators:
and
: Returns true if the left and the right operands are both true.or
: Returns true if the left or the right operand is true.not
: Negates a statement.(expr)
: Groups an expression.
We also supports bitwise operators (b-and
, b-xor
, and b-or
).
Operators are case sensitive.
Comparisons
The following comparison operators are supported in any expression:
==
, !=
, <
, >
, >=
, and <=
.
Check if a string starts with
or ends with
another string:
{% if 'Benjamin' starts with 'B' %}
{% endif %}
{% if 'Benjamin' ends with 'n' %}
{% endif %}
Check that a string contains another string via the containment operator (see next section).
For complex string comparisons, the matches
operator allows you to use
regular expressions:
{% if phone matches '/^[\\d\\.]+$/' %}
{% endif %}
Check that a sequence or a mapping has every
or has some
of its
elements return true
using an arrow function. The arrow function
receives the value of the sequence or mapping:
{% assign sizes = [34, 36, 38, 40, 42] %}
{% assign hasOnlyOver38 = sizes has every v => v > 38 %}
{# hasOnlyOver38 is false #}
{% assign hasOver38 = sizes has some v => v > 38 %}
{# hasOver38 is true #}
Containment Operator
The in
operator performs containment test. It returns true
if the
left operand is contained in the right:
{# returns true #}
{{ 1 in [1, 2, 3] }}
{{ 'cd' in 'abcde' }}
You can use this filter to perform a containment test on strings,
sequences, mappings, or objects implementing the Traversable
interface.
To perform a negative test, use the not in
operator:
{% if 1 not in [1, 2, 3] %}
{# is equivalent to #}
{% if not (1 in [1, 2, 3]) %}
Test Operator
The is
operator performs tests. Tests can be used to test a variable
against a common expression. The right operand is name of the test:
{# find out if a variable is odd #}
{{ name is odd }}
Tests can accept arguments too:
{% if post.status is constant('Post::PUBLISHED') %}
Tests can be negated by using the is not
operator:
{% if post.status is not constant('Post::PUBLISHED') %}
{# is equivalent to #}
{% if not (post.status is constant('Post::PUBLISHED')) %}
Go to the tests<tests/index>
role to
learn more about the built-in tests.
Other Operators
The following operators don't fit into any of the other categories:
-
|
: Applies a filter. -
..
: Creates a sequence based on the operand before and after the operator (this is syntactic sugar for therange<functions/range>
role):{% for i in 1..5 %}{{ i }}{% endfor %}
{# is equivalent to #}
{% for i in range(1, 5) %}{{ i }}{% endfor %}Note that you must use parentheses when combining it with the filter operator due to the
operator precedence rules <twig-expressions>
:(1..5)|join(', ')
-
~
: Converts all operands into strings and concatenates them.{{ "Hello " ~ name ~ "!" }}
would return (assumingname
is'John'
)Hello John!
. -
.
,[]
: Gets an attribute of a variable. -
?:
: The ternary operator:{{ foo ? 'yes' : 'no' }}
{{ foo ?: 'no' }} is the same as {{ foo ? foo : 'no' }}
{{ foo ? 'yes' }} is the same as {{ foo ? 'yes' : '' }} -
??
: The null-coalescing operator:{# returns the value of foo if it is defined and not null, 'no' otherwise #}
{{ foo ?? 'no' }} -
...
: The spread operator can be used to expand sequences or mappings (it cannot be used to expand the arguments of a function call):{% assign numbers = [1, 2, ...moreNumbers] %}
{% assign ratings = {'foo': 10, 'bar': 5, ...moreRatings} %}
Operators
Twig uses operators to perform various operations within templates. Understanding the precedence of these operators is crucial for writing correct and efficient Twig templates.
The operator precedence rules are as follows, with the lowest-precedence operators listed first:
Operator | Score of precedence | Description |
---|---|---|
?: | 0 Ternary operator, conditional statement | |
or | 10 Logical OR operation between two boolean expressions | |
and | 15 Logical AND operation between two boolean expressions | |
b-or | 16 Bitwise OR operation on integers | |
b-xor | 17 Bitwise XOR operation on integers | |
b-and | 18 Bitwise AND operation on integers | |
== , != , <=> , < , > , >= , <= , not in , in , matches , starts with , ends with , has some , has every | 20 Comparison operators | |
.. | 25 Range of values | |
+ , - | 30 Addition and subtraction on numbers | |
~ | 40 String concatenation | |
not | 50 Negates a statement | |
* , / , // , % | 60 Arithmetic operations on numbers | |
is , is not | 100 Tests | |
** | 200 Raises a number to the power of another | |
?? | 300 Default value when a variable is null | |
+ , - | 500 Unary operations on numbers | |
` | , [], .` | - Filters, sequence, mapping, and attribute access |
Without using any parentheses, the operator precedence rules are used to determine how to convert the code:
{{ 6 b-and 2 or 6 b-and 16 }}
{# it is converted to the following logic: (6 & 2) || (6 & 16) #}
Change the default precedence by explicitely grouping expressions with parentheses:
{% assign greeting = 'Hello ' %}
{% assign name = 'Benjamin' %}
{{ greeting ~ name | lower }} {# Hello benjamin #}
{# use parenthesis to change precedence #}
{{ (greeting ~ name) | lower }} {# hello benjamin #}
Whitespace Control
The first newline after a template tag is removed automatically. Whitespace is not further modified by the template engine, so each whitespace (spaces, tabs, newlines etc.) is returned unchanged.
You can also control whitespace on a per tag level. By using the whitespace control modifiers on your tags, you can trim leading and or trailing whitespace.
We support two modifiers:
- Whitespace trimming via the
-
modifier: Removes all whitespace (including newlines); - Line whitespace trimming via the
~
modifier: Removes all whitespace (excluding newlines). Using this modifier on the right disables the default removal of the first newline.
The modifiers can be used on either side of the tags like in {%-
or
-%}
and they consume all whitespace for that side of the tag. It is
possible to use the modifiers on one side of a tag or on both sides:
{% assign value = 'no spaces' %}
{#- No leading/trailing whitespace -#}
{%- if true -%}
{{- value -}}
{%- endif -%}
{# output 'no spaces' #}
<li>
{{ value }} </li>
{# outputs '<li>\n no spaces </li>' #}
<li>
{{- value }} </li>
{# outputs '<li>no spaces </li>' #}
<li>
{{~ value }} </li>
{# outputs '<li>\nno spaces </li>' #}
In addition to the whitespace modifiers, We also have a spaceless
filter that removes whitespace between HTML tags:
{% apply spaceless %}
<div>
<strong>foo bar</strong>
</div>
{% endapply %}
{# output will be <div><strong>foo bar</strong></div> #}