Remove k3-image-clip plugin

This commit is contained in:
Paul Nicoué 2025-05-01 15:26:33 +02:00
parent ba25a9a198
commit 84de819756
6 changed files with 10 additions and 57 deletions

View file

@ -26,7 +26,7 @@
{# Image #}
{% if site.meta_image is not empty %}
<meta id="schema_image" itemprop="image" content="{{ site.meta_image.toImage.url }}">
<meta id="schema_image" itemprop="image" content="{{ site.meta_image.toFile.url }}">
{% endif %}
{% if page.template != 'error' %}
@ -37,7 +37,7 @@
<meta property="og:description" content="{{ site.meta_description }}">
{% endif %}
{% if site.meta_image is not empty %}
<meta property="og:image" content="{{ site.meta_image.toImage.clip(1200, 675).url }}">
<meta property="og:image" content="{{ site.meta_image.toFile.crop(1200, 675).url }}">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="675">
{% endif %}
@ -51,7 +51,7 @@
<meta name="twitter:description" content="{{ site.meta_description }}">
{% endif %}
{% if site.meta_image is not empty %}
<meta name="twitter:image" content="{{ site.meta_image.toImage.clip(1200, 675).url }}">
<meta name="twitter:image" content="{{ site.meta_image.toFile.crop(1200, 675).url }}">
{% endif %}
{% endif %}