-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (41 loc) · 2.16 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
<html>
<head>
<meta charset="utf-8" />
<link href="style.css" media="all" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css"
href="bower_components/ng-sortable/dist/ng-sortable.min.css" />
<!-- OPTIONAL: default style -->
<!--link rel="stylesheet" type="text/css"
href="bower_components/ng-sortable/dist/ng-sortable.style.min.css" /-->
<link rel="stylesheet"
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" />
<link rel="stylesheet"
href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css" />
</head>
<body ng-app="apilapse">
<div ng-controller="BoardCtrl">
<board board="board" />
</div>
<div class="copyright">
<a href="https://github.com/Textalk/apilapse" target="_self">Apilapse</a> © 2015 <a
href="http://textalk.se/">Textalk AB</a>
<a href="COPYING" target="_self"><img alt="GNU Affero GPL 3" src="view/agpl.svg" /></a>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/tv4/tv4.js"></script>
<script src="bower_components/objectpath/lib/ObjectPath.js"></script>
<script src="bower_components/angular-schema-form/dist/schema-form.min.js"></script>
<script src="bower_components/angular-schema-form/dist/bootstrap-decorator.min.js"></script>
<script src="bower_components/ng-sortable/dist/ng-sortable.min.js"></script>
<script src="bower_components/angular-modal-service/dst/angular-modal-service.min.js"></script>
<script src="bower_components/github/github.js"></script>
<script src="src/apilapse.js"></script>
<script src="src/credentials.js"></script>
<script src="src/connector/github/github.js"></script>
<script src="src/connector/redmine/redmine.js"></script>
</body>
</html>