{% sw_extends '@Storefront/storefront/page/product-detail/meta.html.twig' %}
{% block layout_head_meta_tags_opengraph %}
{{ parent() }}
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "{{ page.product.name }}",
{% if page.product.ratingAverage %}
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "{{ page.product.ratingAverage }}",
"ratingCount": "{{ page.reviews.totalReviews }}"
},
{% endif %}
"offers": {
"@type": "Offer",
"price": "{{ page.product.calculatedPrice.totalPrice }}",
"priceCurrency": "EUR"
}
}
</script>
{% endblock %}