{% set social_platforms = ['facebook', 'youtube', 'twitter', 'instagram', 'linkedin', 'corporate'] %}

<tr>
    <td>
        <h2 class="footer-links-title">{% trans %}Connect with us{% endtrans %}</h2>
    </td>
</tr>
<tr class="footer-links">
    <td>
        <ul>
            {% for platform in social_platforms %}
                {% set platform_url_key = platform ~ '_url' %}
                {% if platform_url_key not in brand_info.metadata %}
                    {% continue %}
                {% endif %}
                <li class="social-link">
                    <a href="{{ brand_info.metadata[platform_url_key] }}">
                        <img src="{{ ASSETS_URL }}/{{ BRAND_ID }}/icons/socials/{{ platform | lower }}.png"
                             alt="{{ platform | capitalize }}"
                        >
                    </a>
                </li>
            {% endfor %}
        </ul>
    </td>
</tr>

<tr class="footer-text">
    <td>
        <p>
            <span data-testid="footer_youAreReceiving">
                {% trans brand = brand_info.display_name %}
                    You're receiving this email because you've been invited to {{ brand }}.
                {% endtrans %}
            </span>
            <span>
                {% trans %}This is an automated notification which is unable to receive replies.{% endtrans %}
            </span>
            {% if BRAND_ID == BRAND_ID_AWAL %}
                {{ brand_vars.CONTACT_STR }}
                <a
                    href="mailto:workstation@awal.com"
                    style="
                        color: {{ brand_vars.BRAND_MAIN_COLOR }} !important;
                        text-decoration: none;
                    "
                    >workstation@awal.com</a
                >.
            {% elif BRAND_ID == BRAND_ID_KNR %}
                {{ brand_vars.CONTACT_STR }}
                <a
                    style="
                        text-decoration: none;
                        color: #42c6ff;
                    "
                    href="mailto:info@kollectivenr.com"
                    >info@kollectivenr.com</a
                >.
            {% else %}
                {% trans %}If you have any questions please contact the person who invited you.{% endtrans %}
            {% endif %}
        </p>
    </td>
</tr>
