Files
internetforkids/layouts/_default/home.html
Christian Gick b3f55a2b46
All checks were successful
Deploy Internet for Kids / Build & Push (push) Successful in 11s
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 8s
Deploy Internet for Kids / Promote to Latest (push) Successful in 1s
Deploy Internet for Kids / Rollback (push) Has been skipped
Deploy Internet for Kids / Audit (push) Successful in 2s
add drop cap on homepage intro first letter
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 07:33:57 +03:00

31 lines
1.1 KiB
HTML

{{ define "main" }}
<article class="prose max-w-3xl mx-auto py-12 px-4">
<div class="home-content">{{ .Content }}</div>
<div class="mt-12">
<h2>{{ i18n "recent_posts" | default "Recent Articles" }}</h2>
<div class="grid gap-8">
{{ range first 5 .Site.RegularPages }}
<article class="border-b pb-8">
<h3 class="text-2xl font-newsreader mb-2">
<a href="{{ .Permalink }}" class="text-ifk-accent hover:text-ifk-accent-hover">
{{ .Title }}
</a>
</h3>
<div class="text-sm text-gray-600 mb-4">
<time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time>
{{ with .Params.author }}— {{ . }}{{ end }}
</div>
<p class="text-lg font-newsreader leading-relaxed">
{{ .Summary }}
</p>
<a href="{{ .Permalink }}" class="inline-block mt-4 text-ifk-accent hover:text-ifk-accent-hover font-medium">
{{ i18n "read_more" | default "Read more" }} →
</a>
</article>
{{ end }}
</div>
</div>
</article>
{{ end }}