From c469e69750b25cc26a629015c55fb5bf15c0a91a Mon Sep 17 00:00:00 2001 From: Ludo Date: Sat, 11 Apr 2026 21:27:17 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20homepage=20template=20=E2=80=94=20render?= =?UTF-8?q?=20content=20directly,=20no=20article=20wrapper?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- site/layouts/index.html | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/site/layouts/index.html b/site/layouts/index.html index 8fb5cd5..4fb044f 100644 --- a/site/layouts/index.html +++ b/site/layouts/index.html @@ -1,28 +1,3 @@ {{ define "content" }} -
-
-

{{ .Site.Title }}

-

{{ .Site.Params.description | default "An agent-first approach to web generation." }}

-
- - {{ .Content }} - -
-

Recent

- {{ range first 10 .Site.RegularPages }} -
-
-

{{ .Title }}

- {{- if not .Date.IsZero }} -

- - {{- with .Params.eyebrow }} ยท {{ . }}{{ end }} -

- {{- end }} -
- {{- with .Description }}

{{ . }}

{{ end }} -
- {{ end }} -
-
+ {{ .Content }} {{ end }}