Skip to content
Snippets Groups Projects
Commit a39c4df0 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-5647: fixing naming and adding templates for card elements

parent 7d7d7b1b
No related branches found
No related tags found
1 merge request!14Feature/istwcms 5647 ebremner migrate node
<div class="card__contact-info">
{% embed '@components/details/details.twig' with {
'is_open': TRUE,
}%}
{% block details_summary %}
Contact Information
{% endblock %}
{% block details_content %}
{% if contact_info.email %}
<div class="card__contact-info--email">
<a href="mailto:{{ contact_info.email }}">{{ contact_info.email }}</a>
</div>
{% endif %}
{% if contact_info.phone %}
<div class="card__contact-info--phone">
{{ contact_info.phone }}
</div>
{% endif %}
{% if contact_info.location %}
<div class="card__contact-info--location">
<span class="uw-label">Location:</span>
{{ contact_info.location }}
</div>
{% endif %}
{% endblock %}
{% endembed %}
</div>
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