2022-08-13 15:04:59 +02:00
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
<title>{{ title or metadata.title }}</title>
|
2022-08-13 15:11:19 +02:00
|
|
|
|
{% if description %}<meta name="description" content="{{ description }}">{% endif %}
|
2022-08-13 15:04:59 +02:00
|
|
|
|
<script type="application/ld+json">
|
|
|
|
|
|
{
|
|
|
|
|
|
"@context": "https://schema.org",
|
|
|
|
|
|
"@type": "{{ type or "Article" }}",
|
2022-08-13 15:18:03 +02:00
|
|
|
|
"headline": "{{ headline or title }}",
|
2022-08-13 15:04:59 +02:00
|
|
|
|
"mainEntityOfPage": {
|
|
|
|
|
|
"@type": "WebPage",
|
|
|
|
|
|
"@id": "{{ metadata.url + page.url }}"
|
|
|
|
|
|
},
|
|
|
|
|
|
{% if image %} "image": [
|
|
|
|
|
|
"{{ image }}"
|
|
|
|
|
|
],{% endif %}
|
|
|
|
|
|
"dateCreated": "{{ page.date | htmlDateString }}",
|
|
|
|
|
|
"datePublished": "{{ page.date | htmlDateString }}",
|
|
|
|
|
|
"dateModified": "{{ (modified or page.date) | htmlDateString }}",
|
|
|
|
|
|
{% if description %}"description": "{{ description }}",{% endif %}
|
|
|
|
|
|
{% if keywords %}"keywords": "{{ keywords }}",{% endif %}
|
|
|
|
|
|
"author": {
|
|
|
|
|
|
"@type": "Organization",
|
|
|
|
|
|
"name": "NonSco’llectif",
|
|
|
|
|
|
"url": "{{ metadata.url }}",
|
|
|
|
|
|
"logo": {
|
|
|
|
|
|
"@type": "ImageObject",
|
2022-08-24 23:14:41 +02:00
|
|
|
|
"url": "/images/Logo.png"
|
2022-08-13 15:04:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
"publisher": {
|
|
|
|
|
|
"@type": "Organization",
|
|
|
|
|
|
"name": "NonSco’llectif",
|
|
|
|
|
|
"url": "{{ metadata.url }}",
|
|
|
|
|
|
"logo": {
|
|
|
|
|
|
"@type": "ImageObject",
|
2022-08-24 23:14:41 +02:00
|
|
|
|
"url": "/images/Logo.png"
|
2022-08-13 15:04:59 +02:00
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
"isAccessibleForFree": "True"
|
2022-08-13 15:13:33 +02:00
|
|
|
|
}
|
2022-08-13 15:04:59 +02:00
|
|
|
|
</script>
|
|
|
|
|
|
<link rel="stylesheet" href="{{ '/css/global.css' | url }}">
|
2022-10-23 01:16:31 +02:00
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/android-chrome-192x192.png" sizes="192x192">
|
|
|
|
|
|
<link rel="icon" type="image/png" href="/android-chrome-512x512.png" sizes="512x512">
|
2022-08-13 15:04:59 +02:00
|
|
|
|
<meta name="theme-color" content="#fff7ed">
|