mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-18 16:01:18 +00:00
28 lines
1.2 KiB
HTML
28 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Admin · Warmbly</title>
|
|
|
|
<!-- Favicons. SVG for modern browsers; PNG + ICO fallbacks for the rest;
|
|
apple-touch-icon for the iOS home screen; manifest for installable /
|
|
Android icons. The ICO and apple/PWA PNGs are generated from the
|
|
Warmbly mark (see admin/public/admin-icon.svg). -->
|
|
<link rel="icon" type="image/svg+xml" href="/admin-icon.svg" />
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/site.webmanifest" />
|
|
<meta name="theme-color" content="#0f172a" />
|
|
|
|
<meta name="apple-mobile-web-app-title" content="Admin · Warmbly" />
|
|
<meta name="robots" content="noindex, nofollow" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|