forked from dainst/idai-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (34 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en" ng-app="sampleApp">
<head>
<base id="baseLink" href="/">
<meta charset="utf-8">
<title>idai.components</title>
<link rel="shortcut icon" href="img/arachnelogo.png">
<link rel="stylesheet" href="dist/css/idai-components.css">
</head>
<body ng-controller="MainController">
<idai-navbar
project-id="components"
login-function="openLoginModal()"
logout-function="logout()"
user-object=""></idai-navbar>
<div class="container-fluid">
<div style="min-height:200px; margin-top: 50px; margin-bottom:100px;" ng-view></div>
</div>
<idai-footer
institutions="{'dai': 'http://www.dainst.de/', 'unikoeln': 'http://archaeologie.uni-koeln.de', 'codarchlab': 'http://archaeologie.uni-koeln.de/node/23'}"
mailto="[email protected]">
GitHub-Repository: <a href="https://github.com/dainst/idai-components">https://github.com/dainst/idai-components</a>
</idai-footer>
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js"></script>
<script src="node_modules/angular-route/angular-route.min.js"></script>
<script src="node_modules/angular-animate/angular-animate.min.js"></script>
<script src="dist/idai-components-tpls.js"></script>
<script src="dist/idai-components-no-tpls.js"></script>
<script src="demo/_modules.js"></script>
<script src="demo/main.controller.js"></script>
<script src="demo/app.js"></script>
</body>
</html>