-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
executable file
·55 lines (47 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SUD-MUN</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta http-equiv="cleartype" content="on">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Barrio">
<link rel="shortcut icon" href="icons/icon-144x144.png">
<link rel="manifest" href="/manifest.json">
<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="Sudmun">
<link rel="apple-touch-icon" href="icons/icon-144x144.png">
<meta name="msapplication-TileImage" content="icons/icon-144x144.png">
<meta name="msapplication-TileColor" content="#2F3BA2">
<meta name="theme-color" content="#E0E0E0">
</head>
<body style="font-family: Barrio">
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="content"></div>
<script src="dist/vendor.bundle.js"></script>
<script src="dist/bundle.js"></script>
<script type="text/javascript">
if ('serviceWorker' in navigator) {
navigator.serviceWorker
.register('./service-worker.js')
.then(() => {
console.log('Service Worker Registered')
})
}
</script>
</body>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Barrio';
font-size: 48px;
}
</style>
</html>