eleventy-chirpy-blog-template/content/_includes/json-ld.njk
2025-06-25 14:09:10 +02:00

15 lines
586 B
Plaintext

<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "{{ title }}",
"image": ["{% if image %}{{ image | absoluteUrl }}{% else %}{{ siteconfig.openGraphDefaultImage | absoluteUrl }}{% endif %}"],
"author": {
"@type": "Person",
"name": "{{ siteconfig.author }}"
},
"mainEntityOfPage": "{{ page.url | absoluteUrl }}",
"datePublished": "{{ page.date | isodate }}",
"description": "{{ content | striptags | truncate(140) }}"
}
</script>