in order to display the original twig template #}
{% macro sayHello(name) %}
Hello {{ age > 18 ? 'sir' : firstname }}
{% endmacro %}
{% set username = user.name|default('John Doe') %}
Welcome {{ username }} :-)
{# This image has a dynamic src #}
This is a CKEditor Twig template plugin demo.
{% block title "Template demo page" %}
{% block welcome %}
There is a message for you:
{% if planet == 'hearth' -%}
{{ sayHello('world') }}
{%- else -%}
{% if galaxy == 'orion' %}
{{ sayHello('Gentle Rosenburg') }}
{% else %}
{{ sayHello(planet) }}
{% endif %}
{% if size(galaxy) > size(ourGalaxy) %} :-) {% else %} :-( {% endif %}
{%- endif %}
{% endblock %}
{% for country in countries %}
>> Are you from {{ country.name }}?
{% endfor %}
This is a Twig "code" block, we can use it for all unsupported twig commandes
{{ a > b ? 'a is greater than b' : '' }}
{% for country in countries %}
- Are you from {{ country.name }}?
{% endfor %}
This is a "raw" embed html block, we can use it for all unsupported twig DOM construct
This is nice, but as the html embed plugin parses the content, we cannot write everything we want
{{ See the README for more info, and use the Code Blocks plugin instead }}