custom/static-plugins/EfbStorefront/Resources/views/storefront/page/product-detail/tabs/description.html.twig line 1

Open in your IDE?
  1. <h3 class="product-details-tab subtitle">
  2.     {{ 'detail.tabsDescriptionSubtitle'|trans({'%productName%': page.product.translated.name})|sw_sanitize }}
  3. </h3>
  4. {% set options = {
  5.     snippet: {
  6.         more: 'general.textOverflowShowMore'|trans|sw_sanitize,
  7.         less: 'general.textOverflowShowLess'|trans|sw_sanitize
  8.     }
  9. } %}
  10. <div
  11.     class="product-detail-description-text"
  12.     itemprop="description"
  13.     data-text-overflow-plugin="true"
  14.     data-text-overflow-plugin-options='{{ options|json_encode|raw }}'
  15. >
  16.     {{ page.product.translated.description|raw }}
  17. </div>