diff options
| author | Fuwn <[email protected]> | 2026-01-20 06:25:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-20 06:25:55 -0800 |
| commit | 9b0b5cd9563702263300e80d48ef3dc73f0add8e (patch) | |
| tree | cdc503855c84b67fdc12d46e192d9506a8fa34a1 /internal/server/templates/index.html | |
| parent | fix: Use generic error message for unknown error types (diff) | |
| download | kaze-9b0b5cd9563702263300e80d48ef3dc73f0add8e.tar.xz kaze-9b0b5cd9563702263300e80d48ef3dc73f0add8e.zip | |
feat: Add custom_head option for injecting HTML into head
Diffstat (limited to 'internal/server/templates/index.html')
| -rw-r--r-- | internal/server/templates/index.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/server/templates/index.html b/internal/server/templates/index.html index ea4a170..cd37584 100644 --- a/internal/server/templates/index.html +++ b/internal/server/templates/index.html @@ -20,6 +20,7 @@ <link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🎐</text></svg>"> {{end}} <link rel="stylesheet" href="/static/style.css"> + {{if .CustomHead}}{{.CustomHead}}{{end}} </head> <body class="bg-neutral-50 dark:bg-neutral-950 text-neutral-900 dark:text-neutral-100 min-h-screen font-mono"> <div class="max-w-4xl mx-auto px-4 py-8 sm:py-12"> |