mirror of
https://github.com/backnotprop/plannotator.git
synced 2026-09-14 14:17:26 +08:00
e1ce7dabe1
Favicon style switcher in Settings > Theme: the Totman mascot or the historical dark-navy P tile (byte-identical to the pre-Totman asset, sha256 pinned). Served server-side from first paint in both runtimes; opt-in for hosts of the published UI package. Contributed by @FNDEVVE
18 lines
677 B
HTML
18 lines
677 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
|
|
<title>Plannotator</title>
|
|
<!-- No type/sizes: /favicon.png is served by the Plannotator server, which
|
|
picks the bytes from the persisted favicon style, so the response
|
|
Content-Type is the only truthful declaration. See handleFavicon(). -->
|
|
<link rel="icon" href="/favicon.png">
|
|
|
|
</head>
|
|
<body class="overflow-hidden overscroll-none antialiased">
|
|
<div id="root" class="h-full overflow-hidden"></div>
|
|
<script type="module" src="/index.tsx"></script>
|
|
</body>
|
|
</html>
|