custom/static-plugins/CytexTheme/src/Resources/views/storefront/layout/footer/footer-contact-infolist.html.twig line 1

Open in your IDE?
  1. {% block footer_block_contact_infolist %}
  2.     {% set theme = "cytex-theme.footer.contact." %}
  3.     <section id="collapseFooterContact"
  4.              class="footer-column-content">
  5.         <section class="footer-column-content footer-contact">
  6.             <div>
  7.                 <ul class="footer-column-list">
  8.                     {% set phonenumber = "#{theme}phone"|trans|raw|split("",4)  %}
  9.                     <li class="footer-link-item footer-cytex-firm-name">{{ "#{theme}firm"|trans|raw }}</li>
  10.                     <li class="footer-link-item">{{ "#{theme}street"|trans|raw }}</li>
  11.                     <li class="footer-link-item">{{ "#{theme}zipcode"|trans|raw }} {{ "#{theme}city"|trans|raw }}</li>
  12.                     <li class="footer-link-item">{{ "#{theme}cvr-pre-text"|trans|raw }} {{ "#{theme}cvr"|trans|raw }}</li>
  13.                     <li class="footer-link-item">
  14.                         <a class="footer-link" href="tel:{{ "#{theme}phone-country-code"|trans|raw }}{{ "#{theme}phone"|trans|raw }}">
  15.                             {{ "#{theme}phone-pre-text"|trans|raw }} {{ "#{theme}phone-country-code"|trans|raw}} {{ phonenumber[0] }} {{ phonenumber[1]}}
  16.                         </a>
  17.                     </li>
  18.                     <li class="footer-link-item">
  19.                         <a class="footer-link" href="mailto:{{ "#{theme}email" }}">
  20.                             {{ "#{theme}email-pre-text"|trans|raw }} {{ "#{theme}email"|trans|raw }}
  21.                         </a>
  22.                     </li>
  23.                 </ul>
  24.             </div>
  25.         </section>
  26.     </section>
  27. {% endblock %}