franca-theme-blog/templates/components/schema.j2

44 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-07-22 13:18:15 +00:00
{% if home %}
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "{{ title }}",
"url": "{{ url }}",
"description": "{{ description }}",
"thumbnailUrl": "{{ logo_url }}",
}
</script>
{% else %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": {{ config.schema.type }},
{# "articleSection": {{ translate(section, language) }}, #}
{% if config.schema.type == 'TechArticle' %}
"proficiencyLevel": "Beginner",
{% endif %}
"name": {{ title }},
"headline": {{ title }},
"inLanguage": {{ language }},
"wordCount": {{ wordcount }},
"description": {{ description }},
"datePublished": {{ date_published }},
"dateModified": {{ date_modified }},
"author": {
"@type": "Person",
"name": {{ config.languages[language].author }},
"url": {{ config.baseURL + "/" + language + "/about-author" }}
},
"publisher": {
"@type": "Organization",
"name": "{{ config.languages[language].title }}",
"url": {{ config.baseUrl }},
"logo": {
"@type": "ImageObject",
"url": {{ logo_url }}
}
}
}
</script>
{% endif %}