fabro/apps/fabro-web/index.template.html
Bryan Helmkamp b5f200d701
chore(web): namespace static images under /images and skip in HTTP logs
Move favicon, logo, logotype, and PNG icons from /public/ root to
/public/images/ so the HTTP log middleware can drop them by path
prefix. Extends the existing /assets/ skip in http_log_middleware to
cover /images/ as well, removing favicon/logo entries from the server
log without filtering by extension (which would risk muting future
extension-suffixed API routes).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-30 08:57:14 -04:00

22 lines
876 B
HTML

<!doctype html>
<html lang="en" class="h-full bg-atmosphere scheme-only-dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Fabro</title>
<link rel="icon" href="/images/favicon.svg" type="image/svg+xml" />
<link rel="icon" href="/images/favicon.ico" sizes="32x32" />
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="anonymous" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&family=JetBrains+Mono:wght@400;500;600&display=swap"
/>
{{styles}}
</head>
<body class="h-full font-sans antialiased">
<div id="root"></div>
{{scripts}}
</body>
</html>