{# None #}
{% if data is none %}
None
{# Empty array #}
{% elif data is sequence and data is not string and not data %}
Empty
{# Empty string #}
{% elif data is string and not data %}
Empty
{# True #}
{% elif data is sameas(true) %}
{# False #}
{% elif data is sameas(false) %}
{% else %}
{{ data }}
{% endif %}