From 555f84fea559cd74647acda986ed5972af2ba84a Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Thu, 2 Apr 2026 21:13:27 +0300 Subject: [PATCH] fix: hide date/reading time/author on static pages About, privacy, and imprint pages showed "1 January 0001" because they have no date frontmatter. Disabled showDate, showReadingTime, showAuthor on all static pages across EN/DE/FR. Co-Authored-By: Claude Opus 4.6 (1M context) --- content/de/about.md | 3 +++ content/de/datenschutz.md | 3 +++ content/de/impressum.md | 3 +++ content/en/about.md | 3 +++ content/en/imprint.md | 3 +++ content/en/privacy.md | 3 +++ content/fr/about.md | 3 +++ content/fr/mentions-legales.md | 3 +++ content/fr/politique-de-confidentialite.md | 3 +++ 9 files changed, 27 insertions(+) diff --git a/content/de/about.md b/content/de/about.md index d59757e..bfc04e2 100644 --- a/content/de/about.md +++ b/content/de/about.md @@ -1,5 +1,8 @@ --- title: "Über uns" +showDate: false +showReadingTime: false +showAuthor: false description: "Über Internet für Kinder — wer wir sind und warum wir über Kinderschutz und Online-Sicherheit berichten." translationKey: "about" --- diff --git a/content/de/datenschutz.md b/content/de/datenschutz.md index 7fed6c9..1190971 100644 --- a/content/de/datenschutz.md +++ b/content/de/datenschutz.md @@ -1,5 +1,8 @@ --- title: "Datenschutzerklärung" +showDate: false +showReadingTime: false +showAuthor: false description: "Datenschutzerklärung für Internet für Kinder — wie wir mit Ihren Daten umgehen." slug: "datenschutz" translationKey: "privacy" diff --git a/content/de/impressum.md b/content/de/impressum.md index 336636a..f60fd74 100644 --- a/content/de/impressum.md +++ b/content/de/impressum.md @@ -1,5 +1,8 @@ --- title: "Impressum" +showDate: false +showReadingTime: false +showAuthor: false description: "Impressum und rechtliche Hinweise für Internet für Kinder." slug: "impressum" translationKey: "imprint" diff --git a/content/en/about.md b/content/en/about.md index f575397..6758df2 100644 --- a/content/en/about.md +++ b/content/en/about.md @@ -1,5 +1,8 @@ --- title: "About" +showDate: false +showReadingTime: false +showAuthor: false description: "About Internet for Kids — who we are and why we cover child protection and online safety." translationKey: "about" --- diff --git a/content/en/imprint.md b/content/en/imprint.md index da37a1a..527e5e8 100644 --- a/content/en/imprint.md +++ b/content/en/imprint.md @@ -1,5 +1,8 @@ --- title: "Imprint" +showDate: false +showReadingTime: false +showAuthor: false description: "Legal notice and contact information for Internet for Kids." slug: "imprint" translationKey: "imprint" diff --git a/content/en/privacy.md b/content/en/privacy.md index 5d0e070..798d04d 100644 --- a/content/en/privacy.md +++ b/content/en/privacy.md @@ -1,5 +1,8 @@ --- title: "Privacy Policy" +showDate: false +showReadingTime: false +showAuthor: false description: "Privacy policy for Internet for Kids — how we handle your data." slug: "privacy" translationKey: "privacy" diff --git a/content/fr/about.md b/content/fr/about.md index 4b4dab3..436f071 100644 --- a/content/fr/about.md +++ b/content/fr/about.md @@ -1,5 +1,8 @@ --- title: "À propos" +showDate: false +showReadingTime: false +showAuthor: false description: "À propos d'Internet pour les enfants — qui nous sommes et pourquoi nous couvrons la protection de l'enfance et la sécurité en ligne." translationKey: "about" --- diff --git a/content/fr/mentions-legales.md b/content/fr/mentions-legales.md index a696178..806a6d5 100644 --- a/content/fr/mentions-legales.md +++ b/content/fr/mentions-legales.md @@ -1,5 +1,8 @@ --- title: "Mentions légales" +showDate: false +showReadingTime: false +showAuthor: false description: "Mentions légales et informations de contact pour Internet pour les enfants." slug: "mentions-legales" translationKey: "imprint" diff --git a/content/fr/politique-de-confidentialite.md b/content/fr/politique-de-confidentialite.md index 19caa2c..a65a444 100644 --- a/content/fr/politique-de-confidentialite.md +++ b/content/fr/politique-de-confidentialite.md @@ -1,5 +1,8 @@ --- title: "Politique de confidentialité" +showDate: false +showReadingTime: false +showAuthor: false description: "Politique de confidentialité d'Internet pour les enfants — comment nous traitons vos données." slug: "politique-de-confidentialite" translationKey: "privacy"