b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
40 lines
1.6 KiB
HTML
40 lines
1.6 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<meta name="theme-color" content="#0a0a0a" />
|
|
<link rel="icon" type="image/png" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="shortcut icon" href="/apple-touch-icon.png" />
|
|
<title>Hermes</title>
|
|
<script>
|
|
// Pre-paint the themed background before the app bundle loads. Without
|
|
// this, the first frame (which is what `ready-to-show` waits for) is the
|
|
// UA-default white page, and the real theme only lands once the whole
|
|
// module graph has executed — i.e. the "white flash" on every new
|
|
// window. applyTheme() in src/themes/context.tsx keeps these keys fresh.
|
|
try {
|
|
let bg = localStorage.getItem('hermes-boot-background')
|
|
let scheme = localStorage.getItem('hermes-boot-color-scheme')
|
|
if (!bg) {
|
|
const dark = window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
bg = dark ? '#111111' : '#f7f7f7'
|
|
scheme = dark ? 'dark' : 'light'
|
|
}
|
|
document.documentElement.style.backgroundColor = bg
|
|
if (scheme === 'dark' || scheme === 'light') {
|
|
document.documentElement.style.colorScheme = scheme
|
|
}
|
|
} catch {
|
|
// localStorage unavailable — keep UA defaults.
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root" class="scrollbar-dt"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|