-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle.html
More file actions
36 lines (36 loc) · 1.13 KB
/
article.html
File metadata and controls
36 lines (36 loc) · 1.13 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Progressive Times - Article</title>
<link href="https://fonts.googleapis.com/css?family=Raleway|Merriweather" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./css/site.css">
<!-- Adress bar styling -->
<meta name="theme-color" content="#FFD700">
<meta name="msapplication-navbutton-color" content="#FFD700">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="manifest" href="./manifest.json">
</head>
<body>
<!-- header -->
<div id="article-header">
<div id="article-title"></div>
</div>
<!-- article -->
<p id="article"></p>
<hr>
<div id="offline"></div>
<!-- scripts -->
<script async src="./js/main.js"></script>
<script>
// Register the service worker
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('./sw.js').then(function(registration) {
// Registration was successful
});
}
</script>
</body>
</html>