mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-13 10:56:38 +00:00
12 lines
224 B
ReStructuredText
12 lines
224 B
ReStructuredText
``empty``
|
|
=========
|
|
|
|
``empty`` checks if a variable is empty:
|
|
|
|
.. code-block:: jinja
|
|
|
|
{# evaluates to true if the foo variable is null, false, or the empty string #}
|
|
{% if foo is empty %}
|
|
...
|
|
{% endif %}
|