modules/CDev/ContactUs/templates/web/customer/modules/CDev/ContactUs/contact_us/company_info.twig line 1

Open in your IDE?
  1. {##
  2.  # Company info
  3.  #}
  4. <div class="contact-us-company-info {{ this.getLocationMode() }}">
  5.   <div class="location address-subheader">{{ t('Our location') }}</div>
  6.   <div class="address address-subheader">{{ t('Address') }}</div>
  7.   {% if this.hasLocation() %}
  8.     <div class="location">
  9.       {% for name, value in this.getLocation() %}
  10.         <span class="location-{{ name }}">{{ value }}</span>
  11.       {% endfor %}
  12.     </div>
  13.   {% endif %}
  14.   <div class="phone-email address-subheader">{{ t('Phone') }}{% if this.getEmail() %} & {{ t('Email') }}{% endif %}</div>
  15.   <div class="phone-email-block">
  16.     {% if this.getPhone() %}
  17.       <div class="phone">
  18.         <span class="name">{{ t('Phone') }}:</span>
  19.         <span class="value">{{ this.getPhone() }}</span>
  20.       </div>
  21.     {% endif %}
  22.     {% if this.getFax() %}
  23.       <div class="fax">
  24.         <span class="name">{{ t('Fax') }}:</span>
  25.         <span class="value">{{ this.getFax() }}</span>
  26.       </div>
  27.     {% endif %}
  28.     {% if this.getEmail() %}
  29.       <div class="email">
  30.         <a href="mailto:{{ this.getEmail() }}">{{ this.getEmail() }}</a>
  31.       </div>
  32.     {% endif %}
  33.   </div>
  34. </div>