-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
127 lines (121 loc) · 3.97 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="description"
content="A demo of Progressive Web Application with features like offline, background sync and push notification etc"
/>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Glossy</title>
<link rel="manifest" href="manifest.json" />
<link rel="apple-touch-icon" href="images/icons/icon-72x72.png" />
<link rel="apple-touch-icon" href="images/icons/icon-96x96.png" />
<link rel="apple-touch-icon" href="images/icons/icon-128x128.png" />
<link rel="apple-touch-icon" href="images/icons/icon-144x144.png" />
<link rel="apple-touch-icon" href="images/icons/icon-152x152.png" />
<link rel="apple-touch-icon" href="images/icons/icon-192x192.png" />
<link rel="apple-touch-icon" href="images/icons/icon-384x384.png" />
<link rel="apple-touch-icon" href="images/icons/icon-512x512.png" />
<link
rel="icon"
type="image/png"
href="images/icons/favicon-32x32.png"
sizes="32x32"
/>
<link
rel="icon"
type="image/png"
href="images/icons/favicon-16x16.png"
sizes="16x16"
/>
<link href="favicon.ico" rel="shortcut icon" />
<meta name="apple-mobile-web-app-status-bar" content="#db4938" />
<meta name="theme-color" content="#db4938" />
<link
async
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
/>
<link rel="stylesheet" href="css/styles.min.css" />
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<!--[if IE
]><p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
your experience.
</p><!
[endif]-->
<div class="wrapper">
<header class="header">
<div class="header__left">
<div class="header__logo">GLOSSY</div>
</div>
<div class="header__right">
<div class="header__hamburger">
<span></span>
<span></span>
<span></span>
</div>
</div>
<nav class="nav">
<div class="nav__overlay">
<ul class="nav__list">
<li><a href="https://github.com/uidoyen">Author</a></li>
<li>
<a href="https://github.com/uidoyen/progressive-web-app-demo"
>Source</a
>
</li>
<li><a href="http://www.uidoyen.com">Contact</a></li>
</ul>
</div>
</nav>
</header>
<main class="main">
<!-- <h1 class="main__heading">
A Prograssive web application demo with offline, push notification
features etc
</h1> -->
<div class="content">
<div hidden class="spinner"></div>
<div class="card"></div>
</div>
</main>
<div class="addToHome">
<a href="#" class="addToHome__close">X</a>
<div class="logo">
<div class="logo__icon"><span>G</span></div>
<div>
<h1 class="logo__text">Glossy</h1>
<span>glossy.com</span>
</div>
</div>
<div class="action">
<button class="btn btn__addToHome">Add to home screen</button>
</div>
</div>
</div>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-160621510-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-160621510-1');
</script>
<script src="js/app.js"></script>
<script src="js/offline.js"></script>
<script src="js/api.js"></script>
<script src="js/main.js"></script>
</body>
</body>
</html>