-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (33 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#00897B">
<link rel="stylesheet" href="./css/materialize.min.css">
<link rel="stylesheet" href="./css/style.css">
<link rel="manifest" href="./manifest.json">
<title>PWA DK</title>
</head>
<body>
<!-- navigation -->
<nav class="teal lighten-1" role="navigation">
<div class="nav-wrapper container">
<a href="#" class="brand-logo" id="logo-container">Home</a>
<a href="#" class="sidenav-trigger" data-target="nav-mobile">☰</a>
<ul class="topnav right hide-on-med-and-down"></ul>
<ul class="sidenav" id="nav-mobile"></ul>
</div>
</nav>
<!-- end navigation -->
<!-- content container -->
<div class="container" id="body-content">
</div>
<!-- end content -->
<!-- service worker -->
<script src="./sw-reg.js"></script>
<!-- end service worker -->
<script src="./js/jquery.min.js"></script>
<script src="./js/materialize.min.js"></script>
<script src="./js/custom.js"></script>
</body>
</html>