This repository was archived by the owner on Jun 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (66 loc) · 3.59 KB
/
index.html
File metadata and controls
69 lines (66 loc) · 3.59 KB
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 lang="pt" ng-app="improved-github-analytics">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<base href="/">
<title>Improved GitHub Analtics</title>
<meta name="description" content="Improved GitHub Analytics - Analyze repositories to get different kind of statistics" />
<meta name="author" content="Ludovic Delafontaine & Michela Zucca" />
<meta name="keywords" content="github analytics statistics" />
<meta name="viewport" content="width=device-width, initial-scale=1,user-scalable=yes" />
<link rel="shortcut icon" href="app/assets/images/favicon.ico" />
<link rel="apple-touch-icon" href="app/assets/images/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="72x72" href="app/assets/images/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="app/assets/images/apple-touch-icon-114x114.png" />
<!-- injector:css -->
<!-- endinjector -->
<link rel="stylesheet" href="/src/bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" href="app/assets/css/custom.css">
</head>
<body>
<div ng-include="'app/modules/layouts/nav-bar/navbar.html'"></div>
<!--Beginning-->
<section id="wrapper" scroll-to>
<div class="view-slide-in" ui-view></div>
</section>
<!--End-->
<script src="/src/bower_components/socket.io-client/dist/socket.io.js"></script>
<!-- injector:js -->
<script src="/src/bower_components/jquery/dist/jquery.js"></script>
<script src="/src/bower_components/es5-shim/es5-shim.js"></script>
<script src="/src/bower_components/json3/lib/json3.js"></script>
<script src="/src/bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="/src/bower_components/angular/angular.js"></script>
<script src="/src/bower_components/angular-touch/angular-touch.js"></script>
<script src="/src/bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="/src/bower_components/angular-aria/angular-aria.js"></script>
<script src="/src/bower_components/angular-mocks/angular-mocks.js"></script>
<script src="/src/bower_components/angular-resource/angular-resource.js"></script>
<script src="/src/bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="/src/bower_components/angular-socket-io/socket.js"></script>
<script src="/src/bower_components/chart.js/dist/Chart.js"></script>
<script src="/src/bower_components/angular-chart.js/dist/angular-chart.js"></script>
<script src="/app/app.js"></script>
<script src="/app/app.config.js"></script>
<script src="/app/modules/analytics/analyticsModule.js"></script>
<script src="/app/modules/api/apiModule.js"></script>
<script src="/app/modules/history/historyModule.js"></script>
<script src="/app/modules/home/homeModule.js"></script>
<script src="/app/modules/analytics/analyticsRoute.js"></script>
<script src="/app/modules/history/historyRoute.js"></script>
<script src="/app/modules/home/homeRoute.js"></script>
<script src="/app/modules/analytics/analyticsCtrl.js"></script>
<script src="/app/modules/api/apiCtrl.js"></script>
<script src="/app/modules/history/historyCtrl.js"></script>
<script src="/app/modules/home/homeCtrl.js"></script>
<script src="/app/modules/layouts/nav-bar/navBarCtrl.js"></script>
<script src="/app/modules/analytics/analyticsService.js"></script>
<script src="/app/modules/api/apiService.js"></script>
<script src="/app/modules/history/historyService.js"></script>
<script src="/app/modules/home/homeService.js"></script>
<script src="/app/modules/layouts/nav-bar/navBarService.js"></script>
<script src="/app/modules/layouts/nav-bar/navBarDirective.js"></script>
<!-- endinjector -->
</body>
</html>