-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (33 loc) · 1.47 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
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<meta name="description" content="Your app description">
<meta name="keywords" content="svelte, dev, example" />
<title>Svelte App</title>
<!-- Open Graph -->
<meta property="og:type" content="website">
<meta property="og:title" content="Svelte App">
<meta property="og:description" content="Your app description">
<meta property="og:site_name" content="No name developer">
<meta property="og:locale" content="en_US">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:site" content="@elonmusk">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="/icons/apple-touch-icon.png?v=1">
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32x32.png?v=1">
<link rel="icon" type="image/png" sizes="16x16" href="/icons/favicon-16x16.png?v=1">
<link rel="shortcut icon" href="/icons/favicon.ico?v=1">
<meta name="apple-mobile-web-app-title" content="Svelte App">
<meta name="application-name" content="Svelte App">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="/icons/browserconfig.xml?v=1">
<meta name="theme-color" content="#000000">
</head>
<body>
<noscript>Your browser must support JavaScript to view this site</noscript>
<script type="module" src='/src/app.ts'></script>
</body>
</html>