templates/elements/socialShared.html.twig line 1

Open in your IDE?
  1. <div class="social flex-list" style="--flex-list-indent: 2rem;">
  2.   {% for icon in icons %}
  3.         {% if icon =='facebook' %}
  4.         <a class="flex-list__item" target="_blank" title="Facebook" href="https://www.facebook.com/sharer.php?u={{ app.request.uri }}"
  5.         rel="nofollow" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=700');return false;">
  6.         <svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
  7.             <use xlink:href='#{{ icon }}'/>
  8.         </svg>
  9.         </a>
  10.         {% elseif icon == 'twitter' %}
  11.           <a class="flex-list__item" target="_blank" title="Twitter" href="https://twitter.com/share?url={{ app.request.uri }}" rel="nofollow"
  12.              onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=400,width=700');return false;">
  13.               <svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
  14.                   <use xlink:href='#{{ icon }}'/>
  15.               </svg>
  16.           </a>
  17.         {% elseif icon == 'linkedin' %}
  18.           <a class="flex-list__item" target="_blank" title="Linkedin" href="https://www.linkedin.com/shareArticle?mini=true&amp;url={{ app.request.uri }}"
  19.              rel="nofollow" onclick="javascript:window.open(this.href, '','menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=450,width=650');return false;">
  20.               <svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
  21.                   <use xlink:href='#{{ icon }}'/>
  22.               </svg>
  23.           </a>
  24.         {% elseif iconn == 'daily-motion' %}
  25.           <a class="flex-list__item" target="_blank" title="Facebook" href="https://www.facebook.com/sharer.php?u={{ app.request.uri }}"
  26.              rel="nofollow" onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=700');return false;">
  27.               <svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
  28.                   <use xlink:href='#{{ icon }}'/>
  29.               </svg>
  30.           </a>
  31.         {% elseif icon == 'share' %}
  32.           <a class="flex-list__item" href="">
  33.               <svg width="{{ width }}" height="{{ height }}" viewBox="0 0 16 16">
  34.                   <use xlink:href='#{{ icon }}'/>
  35.               </svg>
  36.           </a>
  37.         {% endif %}
  38.   {% endfor %}
  39. </div>