templates/includes/sticky-socials.html.twig line 1

Open in your IDE?
  1. <div class="apk-sticky-socials">
  2.     <ul>
  3.         {% if document.property('facebookUrl') %}
  4.         <li>
  5.             <a href="{{ document.property('facebookUrl') }}" target="_blank">
  6.                 <img uk-svg width="30" height="30" src="/static/img/pictos/facebook-circle.svg" alt="Facebook">
  7.             </a>    
  8.         </li>
  9.         {% endif %}
  10.         {% if document.property('instagramUrl') %}
  11.         <li>
  12.             <a href="{{ document.property('instagramUrl') }}" target="_blank">
  13.                 <img uk-svg width="30" height="30" src="/static/img/pictos/instagram-circle.svg" alt="Instagram">
  14.             </a>    
  15.         </li>
  16.         {% endif %}
  17.     </ul>
  18. </div>