templates/articles-blocks/share-buttons.html.twig line 1

Open in your IDE?
  1. {% if url is not defined %}
  2.     {% set url = content.routePath %}
  3. {% endif %}
  4. {% if content.title is defined and content.title is not empty %}
  5.     {% if content.title|split(' / ')[1] is defined and content.title|split(' / ')[1] is not null %}
  6.         {% set title = content.title|split(' / ')[1] %}
  7.     {% else %}
  8.         {% set title = content.title %}
  9.     {% endif %}
  10. {% endif %}
  11. <div class="sns-icons diflex">
  12.     <ul class="dflex aic">
  13.         <li>
  14.             Partager
  15.         </li>
  16.         <li>
  17.             {% if title  is defined and title  is not empty %}
  18.                 <a class="dflex aic" href="https://www.facebook.com/sharer/sharer.php?u={{ sulu_content_path(url) }}&t={{ title }}" target="_blank" title="partager sur Facebook"><img src="/resources/img/facebook-icon-articles.svg" alt="Partager sur facebook" width="20" height="20"></a>
  19.             {% endif %}
  20.         </li>
  21.         <li>
  22.             {% if title  is defined and title  is not empty %}
  23.                 <a class="dflex aic" href="https://www.linkedin.com/sharing/share-offsite/?url={{ sulu_content_path(url) }}&title={{ title }}&source={{ sulu_content_root_path() }}" target="_blank" title="partager sur linkedin"><img src="/resources/img/linkedin.svg" alt="Partager sur linkedin" width="22" height="22"></a>
  24.             {% endif %}
  25.         </li>
  26.         <li>
  27.             <button class="dflex aic print" title="Imprimer cette page" onclick="window.print()">
  28.                 <img src="/resources/img/print-icon.svg" loading="lazy" alt="imprimer la page" width="24" height="24">
  29.             </button>
  30.         </li>
  31.     </ul>
  32. </div>