{% if content.title is defined and content.title %}
{{ content.title}}
{% endif %}
{% if content.description is defined and content.description %}
{{ content.description }}
{% endif %}
{% if content.link is defined %}
{{ "for_more_info"|trans|capitalize }}
{% endif %}
{% if content.list is defined and content.list|length > 0 %}
{% if not content.multipleLists is defined or content.multipleLists == false %}
{% set lists = [content.list] %}
{% else %}
{% set lists = content.list %}
{% endif %}
{% for list in lists %}
{% for listItem in list %}
- {{listItem[locale]}}
{% endfor %}
{% endfor %}
{% endif %}