-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
47 lines (45 loc) · 1.91 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#3f51b5">
<title>Vue.js Go Game</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link rel="manifest" href="./manifest.json">
<link rel="icon" sizes="192x192" href="/icon_192x192.png">
</head>
<body>
<div id="app">
</div>
<footer class="app-footer">
<ul>
<li><a class="social-btn social-btn__github" href="https://github.com/petejohanson/vuego" Title="petejohanson/vuego"></a></li>
<li><a class="social-btn social-btn__twitter" href="https://twitter.com/petejohanson" Title="@petejohanson"></a></li>
</ul>
</footer>
<!-- built files will be auto injected -->
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/service-worker.js').then(function(registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope);
}, function(err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err);
});
});
}
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76790777-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>