modules/XC/CrispWhiteSkin/templates/web/customer/contact_us/parts/contact_us.address.twig line 1

Open in your IDE?
  1. {##
  2.  # Contact us address links
  3.  #
  4.  # @ListChild (list="contact_us.parts", weight="10")
  5.  #}
  6. <ul class="contact_us-address_links">
  7.      {% if this.getLocation() %}
  8.         <li class="location">{{ this.getLocation() }}</li>
  9.     {% endif %}
  10.      {% if this.getPhone() %}
  11.         <li class="phone">{{ this.getPhone() }}</li>
  12.     {% endif %}
  13.      {% if this.getEmail() %}
  14.         <li class="email"><a href="mailto:{{ this.getEmail() }}">{{ this.getEmail() }}</a></li>
  15.     {% endif %}
  16.   {{ widget_list('contact_us.parts.last') }}
  17. </ul>