-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (57 loc) · 2.6 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Find 75</title>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<link rel="stylesheet" href="/node_modules/angular-material/angular-material.css">
<link rel="stylesheet" href="/css/index.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<meta name="theme-color" content="#3f51b5">
<link rel="manifest" href="./manifest.json" />
<!-- Mobile -->
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<!-- Chrome / Android -->
<meta name="mobile-web-app-capable" content="yes">
<!-- Facebook meta -->
<meta property="og:site_name" content="Find75"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://find75.azurewebsites.net"/>
<meta property="og:image" content="https://find75.azurewebsites.net/img/screen_2.png"/>
<meta property="og:title" content="Aplikacja wyświetlająca pozycje komunikacji miejskiej w Szczecinie"/>
<link rel="icon" href="icon.ico">
</head>
<body ng-app="App">
<div ui-view="main"></div>
<!-- angular core -->
<script src="/node_modules/angular/angular.js"></script>
<!-- angular more -->
<script src="/node_modules/angular-aria/angular-aria.js"></script>
<script src="/node_modules/angular-animate/angular-animate.js"></script>
<script src="/node_modules/angular-route/angular-route.js"></script>
<script src="/node_modules/angular-ui-router/release/angular-ui-router.js"></script>
<!-- angular material -->
<script src="/node_modules/angular-material/angular-material.js"></script>
<!-- angular google maps -->
<script src="/node_modules/ngmap/build/scripts/ng-map.js"></script>
<script src="//maps.google.com/maps/api/js?key=AIzaSyCMYoOUapEGWW2Q9H1MIo4Q3b2AkHJZibs"></script>
<!-- lodash -->
<script src="/node_modules/lodash/lodash.js"></script>
<!-- <script src="/node_modules/moment/moment.js"></script> -->
<!-- <script src="/node_modules/moment/locale/pl.js"></script> -->
<!-- main app -->
<script src="/js/app.js"></script>
<!-- serviceWorker -->
<script>
if ('serviceWorker' in navigator) {
// navigator.serviceWorker.register('/sw.js')
navigator.serviceWorker.register('/sw.js').then(function(registration) {
// Registration was successful
console.log('ServiceWorker registration successful with scope: ', registration.scope)
}).catch(function(err) {
// registration failed :(
console.log('ServiceWorker registration failed: ', err)
})
}
</script>
</body>
</html>