custom/plugins/IcebergStorefrontChildTheme/src/Resources/views/storefront/layout/meta.html.twig line 1

Open in your IDE?
  1. {% sw_extends "@Storefront/storefront/layout/meta.html.twig" %}
  2. {% block layout_head_javascript_feature %}
  3.     {{ parent() }}
  4.     {% set product = page.product %}
  5.     {% if product is not null %}
  6.         <script type="application/ld+json">
  7.             {{ product.customFields.custom_product_iceberg_data_jsonld | raw }}
  8.         </script>
  9.     {% endif %}
  10. {% endblock %}