forked from IBM/pwa-lit-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
83 lines (66 loc) · 2.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!--
Copyright (c) IBM, Corp. and its affiliates.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>MyApplication</title>
<meta name="description" content="MyApplication description" />
<base href="/" />
<link rel="icon" href="images/favicon.ico" />
<link rel="manifest" href="manifest.webmanifest" />
<meta name="theme-color" content="#000000" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<meta name="apple-mobile-web-app-title" content="MyApplication" />
<link rel="apple-touch-icon" href="images/manifest/icon-192x192.png" />
<link rel="canonical" href="http://localhost:8000" />
<meta property="og:title" content="MyApplication" />
<meta property="og:description" content="MyApplication description" />
<meta
property="og:image"
content="http://localhost:8000/images/open-graph/cover.png"
/>
<meta property="og:image:alt" content="MyApplication logo" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:url" content="http://localhost:8000" />
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin />
<link
rel="preload"
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap"
as="style"
type="text/css"
crossorigin
/>
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<style>
html,
body,
app-index {
height: 100%;
}
body {
margin: 0;
font-family: 'IBM Plex Sans', sans-serif;
}
noscript {
display: block;
margin: 1em;
}
</style>
</head>
<body>
<app-index></app-index>
<noscript>Please enable JavaScript to view this website.</noscript>
<script type="module" src="src/components/app-index.ts"></script>
</body>
</html>