15 lines
586 B
Plaintext
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> |