vendor/store.shopware.com/moorlfoundation/src/Resources/views/storefront/element/cms-element-moorl-share.html.twig line 1

Open in your IDE?
  1. <div class="cms-element-{{ element.type }}">
  2.     {% if element.config.provider.value %}
  3.         {% set currentUrl = app.getRequest().attributes.get('sw-sales-channel-absolute-base-url') ~ app.getRequest().attributes.get('resolved-uri') %}
  4.         {% if activeRoute == 'moorl.magazine.article' %}
  5.             {% set currentUrl = seoUrl(activeRoute, {magazineArticleId:page.magazineArticle.id}) %}
  6.         {% endif %}
  7.         <div class="sticky-top">
  8.             <ul>
  9.                 <li>{{ "moorl-foundation.general.share"|trans }}</li>
  10.                 {% if 'facebook' in element.config.provider.value %}
  11.                     <li>
  12.                         <a title="" class="btn btn-facebook"
  13.                            href="https://www.facebook.com/sharer/sharer.php?u={{ currentUrl }}" target="_blank">
  14.                             {% sw_icon 'facebook' style {pack: 'fab'} %}
  15.                         </a>
  16.                     </li>
  17.                 {% endif %}
  18.                 {% if 'twitter' in element.config.provider.value %}
  19.                     <li>
  20.                         <a title="" class="btn btn-twitter"
  21.                            href="https://twitter.com/intent/tweet?url={{ currentUrl }}" target="_blank">
  22.                             {% sw_icon 'twitter' style {pack: 'fab'} %}
  23.                         </a>
  24.                     </li>
  25.                 {% endif %}
  26.                 {% if 'pinterest' in element.config.provider.value %}
  27.                     <li>
  28.                         <a title="" class="btn btn-pinterest"
  29.                            href="http://pinterest.com/pin/create/button/?url={{ currentUrl }}" target="_blank">
  30.                             {% sw_icon 'pinterest' style {pack: 'fab'} %}
  31.                         </a>
  32.                     </li>
  33.                 {% endif %}
  34.             </ul>
  35.         </div>
  36.     {% endif %}
  37. </div>