-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.old.html
64 lines (52 loc) · 1.38 KB
/
index.old.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=0.5">
<title>presentation-pwa-20171209</title>
<meta name="description" content="presentation-pwa-20170609 description">
<link rel="manifest" href="./manifest.json">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/moon.css">
<link rel="stylesheet" href="lib/css/zenburn.css">
<style>
.reveal {
box-sizing: border-box;
padding: 3vw 2vw;
}
.reveal>.index {
border-left: 14px solid;
box-sizing: border-box;
height: 100%;
overflow: auto;
padding: 0 3vw;
}
.reveal>.index ol {
line-height: 1.36em;
margin: 0 0 0 1.75em;
text-transform: uppercase;
}
</style>
</head>
<body>
<div class="reveal">
<div class="index">
<section>
<h1>Presentations</h1>
<ol>
<li><a href="viewer.html#state-of-js">State Of JS</a></li>
<li><a href="viewer.html#pwa">Progressive Web Apps</a></li>
</ol>
</section>
</div>
</div>
<script>
navigator.serviceWorker
.register('background-script.js')
.then(function() {
console.log('Service Worker Registered');
});
</script>
</body>
</html>