-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (34 loc) · 1.8 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
<!doctype html>
<html lang="pt-br" ng-app="app" ng-controller="HomeController as home">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{title}}</title>
<!--STYLE -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="content/css/style.css" rel="stylesheet">
<link href="content/css/include/narrow-jumbotron.css" rel="stylesheet">
<!--BIBLIOTECAS -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script href="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/underscore/underscore-min.js"></script>
<script src="https://code.angularjs.org/1.5.6/angular-animate.min.js"></script>
<script src="https://code.angularjs.org/1.5.6/angular-sanitize.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.js"></script>
<script src = "https://cdn.zingchart.com/zingchart.min.js" ></script>
<script src = "https://cdn.zingchart.com/angular/zingchart-angularjs.js" ></script>
<!--APP -->
<script src="app/controller/app.controller.js"></script>
<script src="app/services/home.service.js"></script>
<script src="app/controller/home.controller.js"></script>
<script src="app/directive/graph.directive.js"></script>
</head>
<body>
<div ng-include="'app/views/home.html'" onload="init()"></div>
<script src="content/hack/ie10-viewport-bug-workaround.js"></script>
</body>
<footer class="footer">
<p>{{footer}}</p>
</footer>
</html>