21 lines
801 B
HTML
21 lines
801 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="theme-color" content="#0a0e1a" />
|
|
<meta name="application-name" content="gashboard" />
|
|
<meta name="apple-mobile-web-app-title" content="gashboard" />
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
<link rel="icon" href="/icons/icon.svg" type="image/svg+xml" />
|
|
<link rel="apple-touch-icon" href="/icons/icon.svg" />
|
|
<title>gashboard</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|