big overhaul

This commit is contained in:
speyll
2025-04-09 16:09:59 +01:00
parent ae125d2bc6
commit 9af0a02acd
32 changed files with 517 additions and 410 deletions

View File

@@ -0,0 +1,21 @@
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "{{ page.title }}",
{% if config.extra.author %}
"author": {
"@type": "Person",
"name": "{{ config.extra.author }}"
},
{% endif %}
{% if page.date %}
"datePublished": "{{ page.date }}",
{% endif %}
"description": "{{ page.description | default(value=config.description) }}",
"publisher": {
"@type": "Organization",
"name": "{{ config.title }}"
}
}
</script>