{# # This is a Twig Framework. It contains HTML code which can be displayed by calling the # twigFramework() functions. #} {# # The following code outputs a phrase with merge fields in it. #}
{% trans %} Today is: {{Today}} {% endtrans %}
{# # This is an if-statement; the code inside the if-statement will only be displayed # if the Tomorrow merge field is not empty. #} {% if Tomorrow %}{% trans %} Tomorrow is: {{Tomorrow}} {% endtrans %}
{% endif %}