Files
internetforkids/layouts/partials/extend-head.html
Christian Gick 852640a574
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 13s
Deploy Internet for Kids / Deploy (push) Successful in 6s
Deploy Internet for Kids / Health Check (push) Successful in 2s
Deploy Internet for Kids / Smoke Tests (push) Successful in 3s
Deploy Internet for Kids / IndexNow Ping (push) Successful in 7s
Deploy Internet for Kids / Promote to Latest (push) Successful in 2s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s
feat: Newsreader serif typography + Agiliton brand colors
- Add Newsreader font (darioamodei.com-inspired literary serif)
- Warm light background (#fafaf9) with Agiliton lime/emerald accents
- 20px body text, 32px line-height for research publication feel
- Sans-serif UI elements (nav, tags, TOC) for contrast
- 800px max content width for focused reading
- Status badges updated to green palette

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-03 13:01:03 +03:00

36 lines
1.7 KiB
HTML

{{/* Newsreader serif font (Dario Amodei-inspired typography) */}}
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,500&display=swap" rel="stylesheet">
{{/* 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" />