Files
ersatztv/web/index.html
T
timothyandClaude Fable 5 ef88e93256
Build ErsatzTV Image / Build & test (.NET) (pull_request) Successful in 4m27s
Build ErsatzTV Image / EF migration integrity (SQLite + MySql) (pull_request) Successful in 4m45s
Build ErsatzTV Image / Build & push image (amd64) (pull_request) Has been skipped
feat(web): ChicoryTV rebrand (#90)
Complete the SPA-surface rebrand: SVG favicon (chicorytv-icon) served
from web/public, description + theme-color meta, sidebar brand mark
switched to the canonical transparent chicory-mark.svg per the design
system lockup, and the Channel Builder default group ErsatzTV->ChicoryTV
(tests updated). Legacy Blazor UI and backend strings intentionally
untouched (product-wide rebrand = epic #59).

closes #90

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-07 10:05:39 +02:00

31 lines
929 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ChicoryTV</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="description" content="ChicoryTV — IPTV channel studio" />
<meta name="theme-color" content="#12100E" />
<script>
(() => {
try {
const theme = window.localStorage.getItem('ctv-theme');
if (theme === 'cool' || theme === 'dual') {
document.documentElement.dataset.theme = theme;
} else {
document.documentElement.removeAttribute('data-theme');
}
} catch {
document.documentElement.removeAttribute('data-theme');
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>