-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (63 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="A small example of Progressive Web App by Neocomplexx">
<meta name="author" content="Neocomplexx Group SA http://www.neocomplexx.com">
<link rel="icon" href="favicon.ico">
<title>Progressive Web App Example</title>
<!-- Styles -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link href="app.css" rel="stylesheet">
<!-- Manifest of PWA -->
<link rel="manifest" href="manifest.json">
<!-- PWA for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="PWA Example">
<link rel="apple-touch-icon" href="images/icons/icon-152x152.png">
<!-- PWA for Edge on Windows -->
<meta name="msapplication-TileImage" content="images/icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#2093F5">
</head>
<body>
<!-- App Container -->
<main role="main" class="container">
<h1 class="mt-5">PWA example</h1>
<p class="lead">Welcome anxious user! :)</p>
<div class="alert alert-success" role="alert">The App is Online!</div>
<div class="alert alert-danger" role="alert">The App is Offline!</div>
<div class="loader" hidden><div></div><div></div></div>
<div class="tableBody">
<div class="card rowTemplate" hidden>
<div class="card-body">
<h4 class="title"></h4>
<p>
<small>
<strong>ID:</strong>
<span class="id"></span> |
<strong>User ID:</strong>
<span class="userId"></span>
</small>
</p>
<hr>
<p class="body"></p>
</div>
</div>
</div>
</main>
<!-- App Footer -->
<footer class="footer">
<div class="container">
<span class="text-muted">A small example of Progressive Web App by
<a target="_blank" href="http://www.neocomplexx.com">Neocomplexx Group SA</a>
</span>
</div>
</footer>
<!-- Javascript files -->
<script src="app.js" async></script>
</body>
</html>