Child safety marketing blog with: - First article: Global Child Protection Laws 2026 (EN/DE) - Interactive world map (17 countries, TopoJSON) - SEO: JSON-LD, OpenGraph, hreflang, canonical URLs - AI search: robots.txt, llms.txt, FAQ sections - VPN CTA shortcode, about pages, tag taxonomy - Rybbit analytics partial (site ID TBD) - Dockerfile + nginx.conf for deployment Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
{{/* 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 */}}
|
|
{{/* Allow all AI crawlers — maximize discoverability */}}
|
|
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large" />
|
|
|
|
{{/* Explicit AI crawler permissions */}}
|
|
<meta name="googlebot" content="index, follow" />
|
|
|
|
{{/* Clear, machine-parseable description for AI summarization */}}
|
|
{{ 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" />
|