feat: switch to PaperMod theme, add Rybbit analytics, CI/CD deploy

- Replace ananke with PaperMod theme (git submodule)
- Configure PaperMod: reading time, breadcrumbs, search, dark mode
- Localize menus for EN/DE
- Register internetforkids.ong in Rybbit (site ID: a0ab05916d6c)
- Migrate partials from ananke _partials/ to PaperMod extend_head/footer
- Set up webhook-based auto-deploy on push to main

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Christian Gick
2026-04-02 14:12:57 +03:00
parent bdd2da36d5
commit 57bad97639
6 changed files with 56 additions and 22 deletions

View File

@@ -0,0 +1,2 @@
{{/* Rybbit privacy-friendly analytics */}}
{{ partial "rybbit.html" . }}

View File

@@ -0,0 +1,30 @@
{{/* Structured data for SEO + AI search */}}
{{ partial "structured-data.html" . }}
{{/* Hreflang tags for multilingual SEO */}}
{{ if .IsTranslated }}
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}" />
{{ range .Translations }}
<link rel="alternate" hreflang="{{ .Language.Lang }}" href="{{ .Permalink }}" />
{{ end }}
{{ end }}
{{/* Canonical URL */}}
<link rel="canonical" href="{{ .Permalink }}" />
{{/* AI Search Engine Optimization */}}
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large" />
<meta name="googlebot" content="index, follow" />
{{ if .IsPage }}
<meta name="topic" content="{{ .Title }}" />
<meta name="subject" content="{{ .Description | default .Summary | plainify | truncate 160 }}" />
{{ with .Params.tags }}<meta name="keywords" content="{{ delimit . ", " }}" />{{ end }}
<meta name="article:published_time" content="{{ .Date.Format "2006-01-02" }}" />
<meta name="article:modified_time" content="{{ .Lastmod.Format "2006-01-02" }}" />
<meta name="article:section" content="{{ .Section }}" />
<meta name="article:author" content="{{ .Params.author | default "Agiliton" }}" />
{{ end }}
{{/* LLMs.txt discovery */}}
<link rel="alternate" type="text/plain" href="/llms.txt" title="LLM-readable site description" />