33 lines
1.5 KiB
HTML
33 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<!--
|
|
One tag, no media query: applyTheme() keeps it in step with the chosen
|
|
theme, which a media query cannot do — it only knows what the OS prefers,
|
|
not what the user picked here. There used to be two, both with media
|
|
attributes, which meant the selector in applyTheme (:not([media])) matched
|
|
neither and the color never moved off whatever the OS implied.
|
|
|
|
The initial value is the default theme's background, so the browser chrome
|
|
is right from the first paint rather than only once JS has run.
|
|
-->
|
|
<meta name="theme-color" content="#0d2430" />
|
|
<meta name="description" content="ihasmail - fast, friendly JMAP webmail for Stalwart" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<link rel="icon" type="image/png" sizes="64x64" href="/img/favicon-64.png" />
|
|
<link rel="apple-touch-icon" href="/img/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<title>ihasmail</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|