{% extends "main/base.html" %} {% block body_id %}homepage{% endblock body_id %} {% block aside %} {% endblock aside %} {% block content %}
{% set has_additional_websites = websites | length > 0 %} {% if has_website_cv or has_additional_websites %}

{{ translations.main_page.websites }}

{% if has_website_cv %} {{ website_cv.domain }}{% if has_additional_websites %}, {% endif %} {% endif %} {% for website in websites %} {{ website.domain }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}

{{ translations.main_page.contacts }}

{{ email_main }}, {{ email_cv }}{% if emails | length > 0 %}, {% endif %} {% for email in emails %} {{ email }}{% if not loop.last %}, {% endif %} {% endfor %}

{{ translations.main_page.social }}

{% for social in socials %} {% if social.social_name == 'linkedin' %} {% else %} {{ social.icon_svg | default(value="") | safe }} {% endif %} {{ social.profile_nickname }} {% endfor %}
{% endblock content %}