Files
Stalwart-webui/index.html
T

25 lines
886 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<base href="/" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<!-- iOS "Add to Home Screen": icon + short name, no service worker required -->
<link rel="apple-touch-icon" href="pwa/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Stalwart" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#ffffff" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#09090b" media="(prefers-color-scheme: dark)" />
<title>Stalwart WebUI</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>