Skip to content
Snippets Groups Projects
Commit 7861bacc authored by Lily Yan's avatar Lily Yan
Browse files

ISTWCMS-7200 Any additional emails appear below the primary email on both the...

ISTWCMS-7200 Any additional emails appear below the primary email on both the node and the listing page
parent 6053ea7b
No related branches found
No related tags found
1 merge request!249ISTWCMS-7200 Any additional emails appear below the primary email on both the...
......@@ -12,6 +12,15 @@
<a href="mailto:{{ contact_info.email }}">{{ contact_info.email }}</a>
</div>
{% endif %}
{% if contact_info.emails %}
{% for email in contact_info.emails %}
{% if email.email %}
<div class="card__contact-info--emails">
{{ email.description }}: {{ email.email }}
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if contact_info.phone %}
<div class="card__contact-info--phone">
{{ contact_info.phone }}
......
......@@ -31,7 +31,15 @@
<a href="mailto:{{ contact.footer.contact_info.email }}">{{ contact.footer.contact_info.email }}</a>
</div>
{% endif %}
{% if contact.footer.contact_info.emails %}
{% for email in contact.footer.contact_info.emails %}
{% if email.email %}
<div class="uw-contact__emails">
{{ email.description }}: {{ email.email }}
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if contact.footer.contact_info.phone %}
<div class="uw-contact__phone">
{{ contact.footer.contact_info.phone }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment