-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (59 loc) · 3.21 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
67
<!DOCTYPE html>
<html lang="en" ng-app="mainApp" id="ng-app"> <!-- id="ng-app" to satisfy IE -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DemTech - Democratic Technologies</title>
<script type="text/javascript" src="js/angular.min.js"></script>
<script type="text/javascript" src="js/angular-route.min.js"></script>
<script type="text/javascript" src="js/ui-bootstrap-tpls-0.6.0.min.js"></script>
<script type="text/javascript" src="js/routes.js"></script>
<script type="text/javascript" src="js/controllers.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container" ng-controller="NavController">
<div class="row">
<div class="col-lg-12 col-md-12">
<ul class="nav nav-tabs">
<li>
<a href="index.html" title="Frontpage of demtech.dk" style="padding: 0; margin-top: -7px; border: 0;">
<img src="img/demtech_menu.png" alt="DemTech">
</a>
</li>
<li class="pull-right" ng-class="{active: isActive('/contact')}">
<a href="#/contact"><span class="glyphicon glyphicon-envelope"></span> Contact</a>
</li>
<li class="pull-right" ng-class="{active: isActive('/people')}">
<a href="#/people"><span class="glyphicon glyphicon-user"></span> People</a>
</li>
<li class="pull-right" ng-class="{active: isActive('/about')}">
<a href="#/about"><span class="glyphicon glyphicon-info-sign"></span> About</a>
<li class="pull-right" ng-class="{active: isActive('/')}">
<a href="#/"><span class="glyphicon glyphicon-home"></span> Home</a>
</li>
</ul>
</div>
</div>
<br>
<div ng-view ng-controller="PageController"></div>
<footer class="footer row text-muted">
<div class="col-md-6">
DemTech is funded by
<a href="http://fivu.dk/en/research-and-innovation/councils-and-commissions/the-danish-council-for-strategic-research?set_language=en&cl=en"
title="Homepage of The Danish Council for Strategic Research">The Danish Council for Strategic Research</a>.
<br>
This page has been designed using the
<a href="http://getbootstrap.com" title="Website for Bootstrap">Bootstrap</a> web framework.
</div>
<div class="col-md-6 text-right">
Contact DemTech at
<a href="mailto:[email protected]" title="Send an email to DemTech">[email protected]</a>
or visit our <a href="partials/contact.html" title="Contact page">contact section</a>.
<br>
By the DemTech Research Group, <a href="http://itu.dk" title="Website of IT-University of Copenhagen">IT-University of Copenhagen</a>, Denmark
</div>
</footer>
</div>
</body>
</html>