custom/plugins/FlinkCmsAnchor/src/Resources/views/storefront/block/cms-block-flink-anchor.html.twig line 1

Open in your IDE?
  1. {% block block_flink_anchor %}
  2.     {% set id = element.id %}
  3.     <div class="col-12" style="position:static;">
  4.         <div class="flink-anchor" data-cms-element-id="{{ id }}">
  5.             {% block block_flink_anchor_slot %}
  6.                 {% set element = block.slots.getSlot('main') %}
  7.                 {% sw_include "@Storefront/storefront/element/cms-element-" ~ element.type ~ ".html.twig" ignore missing %}
  8.             {% endblock %}
  9.         </div>
  10.     </div>
  11. {% endblock %}