revert: JSON-LD entfernt (nutzlos hinter Authelia)

Die Seiten sind hinter Authelia geschützt, Google kann sie nicht
 crawlen. JSON-LD bringt dort nichts.
This commit is contained in:
2026-08-07 16:29:36 +02:00
parent 036122ab20
commit a5f623d75c
-21
View File
@@ -7,27 +7,6 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg"> <link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
<title>{{ contact.full_name or 'Kontakt' }} Kontakte</title> <title>{{ contact.full_name or 'Kontakt' }} Kontakte</title>
{% if contact.addresses %}
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"name": "{{ contact.full_name or '' }}",
"address": [
{% for addr in contact.addresses %}
{
"@type": "PostalAddress",
{% if addr.street %}"streetAddress": "{{ addr.street }}",{% endif %}
{% if addr.city %}"addressLocality": "{{ addr.city }}",{% endif %}
{% if addr.zip %}"postalCode": "{{ addr.zip }}",{% endif %}
{% if addr.region %}"addressRegion": "{{ addr.region }}",{% endif %}
{% if addr.country %}"addressCountry": "{{ addr.country }}"{% endif %}
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}
</script>
{% endif %}
<style> <style>
* { * {
margin: 0; margin: 0;