{% if header is not empty %}
{{ header.title | raw }}

{% endif %}
{% for line in lines %}
{% if line.type == 'TEXT' %}
{{ line.escapedText | raw }}
{% elseif line.type == 'BUTTON' %}
{{ line.text | raw }} -> {{ line.url | raw }}
{% endif %}

{% endfor %}
{% for line in footers %}
{{ line.escapedText | raw }}

{% endfor %}
{% if copyright != null%}
{{ copyright.year }} {{ copyright.name | raw }}{% if copyright.url is not empty %} -> {{ copyright.url }}{% endif %}
{% endif %}