<tr>
    <td>
        <h2 class="footer-links-title">{{ footer_connectWithUs }}</h2>
    </td>
</tr>
<tr class="footer-links">
    <td>
        <ul>
            {% for platform in social_platforms %}
                {% assign url_key = platform | append: '_url' %}
                {% assign url_value = organization.metadata[url_key] %}
                {% if url_value and url_value != '' %}
                    <li class="social-link">
                        <a href="{{ url_value }}">
                            <img
                                src="{{ cdnAssets }}{{organization.name}}/icons/socials/{{ platform }}.png"
                                alt="{{ platform | capitalize }}"
                            >
                        </a>
                    </li>
                {% endif %}
            {% endfor %}
        </ul>
    </td>
</tr>

<tr class="footer-text">
    <td>
        <p>
            <span data-testid="footer_youAreReceiving">
                {{
                    footer_youAreReceiving
                    | replace: '%orgDisplayName%', orgDisplayName
                }}
            </span>
            <span>
                {{ footer_thisIsAutomatedNotification }}
            </span>
            {% if invitingAppName == 'collaborators-login' %}
                {{
                    footer_collabsIfQuestionContactVendor
                    | replace: '%vendorName%', vendorName
                }}
            {% elsif awalUser and inviter.name == 'AWAL Admin' %}
                {{ footer_awalAdminIfQuestionsContact }}
                <a
                    href="mailto:workstation@awal.com"
                    style="
                        color: #fef200;
                        text-decoration: none;
                    "
                    >workstation@awal.com</a
                >.
            {% elsif knrUser and inviter.name == 'KNR Admin' %}
                {{ footer_knrAdminIfQuestionsContact }}
                <a
                    style="
                        text-decoration: none;
                        color: #42c6ff;
                    "
                    href="mailto:info@kollectivenr.com"
                    >info@kollectivenr.com</a
                >.
            {% else %}
                {{ footer_ifQuestionsContact }}
            {% endif %}
        </p>
    </td>
</tr>
