-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.html
100 lines (85 loc) · 3.17 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!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">
<meta name="description" content="Open Github PWA is a template for building PWA with github pages">
<!--Social meta-->
<meta property="og:title" content="Open Github PWA" />
<meta property="og:url" content="" />
<meta property="og:description"
content="This is a PWA boilerplate, with cache busting mechanism and preconfigured Github Pages deployment" />
<meta property="og:image" content="/assets/icons/icon.png" />
<meta property="og:type" content="website" />
<!---->
<link rel="apple-touch-icon" sizes="180x180" href="assets/icons/icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/icons/icon.png">
<link rel="icon" type="image/png" href="assets/icons/icon.png" />
<meta name="theme-color" content="#640700">
<link rel="manifest" href="manifest.json">
<!---->
<!---->
<link rel="stylesheet" href="css/main.css">
<title>Open Github PWA</title>
</head>
<body>
<div id="appContainer" class="container">
<header>
<h1> Open Github PWA </h1>
<div id="version">
</div>
</header>
<div class="body">
<p>
This is a PWA , deployed using Github Pages (Free and Awesome) with cache bust mechanism.
</p>
<p>
Build your own pwa in 2 mins, follow the bellow steps
</p>
<ol>
<li>Fork this project on github</li>
<li>Enable github pages option</li>
<li>Done!! access your github pages url</li>
</ol>
<p>
Check <a href="https://github.com/PranoySarkar/OpenPWA">here </a> for more information
</p>
<p>
At the beginning it might take some time to deploy, if it shows 404 wait for 5 mins.
</p>
<p>
If you dont see the download button bollow then delete the previous install.
</p>
<p>
<a href="https://pranoysarkar.github.io/OpenPWA/">Open in APP </a>
</p>
<div class="controllers">
<div class="downloadPrompt">
<div class="promptControllers">
<button class="downloadButton">Download </button>
</div>
</div>
</div>
<footer>
</footer>
<div class="hiddenElements">
</div>
</div>
</div>
<div class="bigFullScreen">
</div>
<script type="text/javascript">
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register(`service-worker.js`)
.then(function () {
console.log("Service Worker Registered");
});
}
</script>
<script defer src="js/settings.js"></script>
<script defer src="js/install-handler.js"></script>
<script defer src="js/main.js"></script>
</body>
</html>