{% extends '@ElementsJsonLdReloaded/jsonld/base.html.twig' %}
{% block jsonLd %}
"headline": "{{object.name|jld_sanitize}}",
"url": "{{jld_url(object)}}",
"image": "{{ jld_imageUrl(object.previewImage) }}",
"description": "{{ jld_escape_string(jld_escape_string(object.shortDescription), ['
', '
', ' '], ['', '', '']) }}",
"articleBody": "{{ jld_escape_string(jld_escape_string(object.shortDescription), ['
', '
', ' '], ['', '', '']) }}",
"datePublished": "{{jld_date(object.publishDate)}}",
"dateModified": "{{jld_date(object.modificationDate)}}",
"publisher": {
"@type": "Organization",
"name": "Kuhn",
"url": "https://kuhn.at/de",
"email": "info@kuhn.at",
"address": {
"@context": "https://schema.org",
"@type": "PostalAddress",
"streetAddress": "Kuhnstraße 1",
"postalCode": "5301",
"addressLocality": "Eugendorf",
"addressRegion": "Salzburg",
"addressCountry": "AT"
}
},
"author": {
"@type": "Person",
"name": "Kuhn"
}
{% endblock %}