generated from loteoo/hyperapp-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
38 lines (33 loc) · 1.69 KB
/
index.html
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
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1">
<title>Hyperstatic starter</title>
<meta name="description" content="Hyperapp starter with a modern configuration and best-practices in mind.">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="manifest" href="/manifest.webmanifest">
<meta name="theme-color" content="#ffffff">
<meta name="mobile-web-app-capable" content="yes">
<!-- Open graph -->
<meta property="og:title" content="Hyperstatic starter" />
<meta property="og:description" content="Hyperapp starter with a modern configuration and best-practices in mind." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hyperstatic-starter.netlify.app" />
<meta property="og:image" content="/card.png" />
<!-- IOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="#ffffff">
<meta name="apple-mobile-web-app-title" content="Hyperstatic starter">
<link rel="apple-touch-startup-image" href="/icon-192x192.png">
<link rel="apple-touch-icon" href="/icon-192x192.png">
<link rel="apple-touch-icon" sizes="180x180" href="/icon-180x180.png">
<link rel="apple-touch-icon" sizes="192x192" href="/icon-192x192.png">
<link rel="apple-touch-icon" sizes="512x512" href="/icon-512x512.png">
<!-- App entry point -->
<script type="module" defer src="./src/main.tsx"></script> </head>
<body>
<div id="hyperstatic"></div>
</body>
</html>