Drop PaperMod theme, use minimal self-contained templates
deploy / deploy (push) Successful in 3s

PaperMod's opengraph.html calls partial with a redundant "partials/"
prefix that the production Hugo version (0.154.5, from the
hugomods/hugo:exts build image) doesn't tolerate, breaking the build.
Rather than patch a vendored theme, replaced it with plain, dependency-
free layouts (baseof/index/single/list) that render the actual homepage
content directly. Verified building successfully against the exact
Hugo image/version the deploy pipeline uses.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-07 22:39:37 -04:00
parent b6fad1939f
commit cd6ba1415c
7 changed files with 58 additions and 36 deletions
+34
View File
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language.LanguageCode | default "en" }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ if .IsHome }}{{ .Site.Title }}{{ else }}{{ .Title }} · {{ .Site.Title }}{{ end }}</title>
<meta name="description" content="{{ .Site.Params.description }}">
<style>
:root { color-scheme: light dark; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
background: #fafafa;
color: #1a1a1a;
}
@media (prefers-color-scheme: dark) {
body { background: #14161a; color: #e8e8e8; }
a { color: #8ab4f8; }
}
main {
max-width: 640px;
margin: 0 auto;
padding: 4rem 1.5rem;
}
a { color: #1a5fb4; }
</style>
</head>
<body>
<main>
{{ block "main" . }}{{ end }}
</main>
</body>
</html>