-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
66 lines (55 loc) · 2.69 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
<!doctype html>
<html class="no-js" lang="en">
<head >
<base href="/" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Icecomm.io</title>
<link rel="shortcut icon" href="client/assets/img/icecomm-favicon.ico"/>
<link rel="stylesheet" href="client/css/app.css" />
<link rel="stylesheet" href="client/css/font-awesome.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/github.min.css">
<link rel="stylesheet" href="bower_components/c3/c3.min.css" type="text/css">
<!-- <link rel="stylesheet" href="client/css/animate.css" /> -->
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58888725-1', 'auto');
ga('send', 'pageview');
</script>
<body ng-app="tawnyOwlApp">
<div ng-include='"client/templates/header.html"'></div>
<div ng-view class="main">
<!-- templates will route to ui-view div -->
<div ui-view></div>
</div>
<div ng-include='"client/templates/footer.html"' class="footer"></div>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script src="https://davidwalsh.name/demo/ZeroClipboard.js"></script>
<!-- Vendor: Angular, followed by our custom Javascripts -->
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.18/angular.min.js"></script>
<script src="bower_components/angularytics/src/angularytics.js"></script>
<script src="bower_components/angularytics/src/googleHandler.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<script src="client/js/angular-mm-foundation.js"></script>
<!-- c3 and d3 -->
<script src="bower_components/d3/d3.min.js" charset="utf-8"></script>
<script src="bower_components/c3/c3.min.js"></script>
<script src="client/js/authControllers.js"></script>
<script src="client/js/statController.js"></script>
<script src="client/js/adminController.js"></script>
<script src="client/js/main.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script>
<script src="https://pc035860.github.io/angular-highlightjs/angular-highlightjs.min.js"></script>
<script>
$(document).ready(function(){
$(document).foundation();
});
</script>
</body>
</html>