-
Notifications
You must be signed in to change notification settings - Fork 296
/
index.html
60 lines (46 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>PWABuilder</title>
<base href="/" />
<!-- This meta viewport ensures the webpage's dimensions change according to the device it's on. This is called Responsive Web Design.-->
<meta name="viewport"
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0" />
<meta name="description" content="All the tools you need to build and deploy your Progressive Web Apps." />
<meta name="theme-color" content="#FFFFFF" />
<!-- These meta tags are Apple-specific, and set the web application to run in full-screen mode with a black status bar. Learn more at https://developer.apple.com/library/archive/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="PWABuilder" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<!-- for analytics -->
<meta name="ms.appid" content="PWABuilder">
<link rel="preconnect" href="https://az416426.vo.msecnd.net">
<!-- Imports an icon to represent the document. -->
<link rel="icon" href="assets/logos/index_logo.png" type="image/png" />
<!-- Imports the manifest to represent the web application. A web app must have a manifest to be a PWA. -->
<link rel="manifest" href="/manifest.json" />
<!-- A stylesheet to design the pages. -->
<link href="./styles/global.css" rel="stylesheet" />
<!--<script type="module" src="/build/src/script/pages/app-index.js"></script>-->
<script type="module" src="/src/app-index.ts"></script>
<!-- preload font -->
<link rel="preload" as="font" href="/assets/fonts/Hind-Bold.ttf" />
<link rel="preload" as="font" href="/assets/fonts/Hind-Regular.ttf" />
<!-- Google Site Verification for Google Search Console dashboard -->
<meta name="google-site-verification" content="HPBaodfLBvVIFzKwWeIWMwaIwH_ArRkSG1xjWhpqhhg" />
</head>
<body>
<app-index></app-index>
<span id="pageTitle"></span> <!-- Add this line -->
<!-- for analytics -->
<script type="text/javascript" src="https://az416426.vo.msecnd.net/scripts/c/ms.analytics-web-2.min.js"></script>
<script>
navigator.serviceWorker.getRegistrations().then((registrations) => {
for(const registration of registrations) {
registration.unregister();
}
})
</script>
</body>
</html>