-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.68 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- viewport-fit=cover lets the app draw under the iOS notch / home
indicator; safe-area-inset-* CSS env() vars then carry the
offsets we pad against in Header and BottomNav. -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.5, user-scalable=no, viewport-fit=cover" />
<meta name="description" content="OpenEVSE UI" />
<!-- "Add to Home Screen" on iOS: run in standalone mode and let the
app draw under the translucent status bar. -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="OpenEVSE" />
<!-- Initial theme color follows the system scheme so the status bar
doesn't flash the wrong shade before JS loads. theme.js replaces
these with a single #theme-color tag matching the resolved theme
(which may be a user override). -->
<meta name="theme-color" content="#f0f4f3" media="(prefers-color-scheme: light)" />
<meta name="theme-color" content="#222835" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="./favicon.ico" />
<!-- iOS "Add to Home Screen" app icon — 180×180, opaque, iOS rounds
the corners itself. No splash image: a device-specific PNG was
~78 kB of flash for ~500 ms of value; iOS uses its default. -->
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<title>OpenEVSE</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>