This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·134 lines (115 loc) · 5.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- boostrap stylesheets -->
<link rel="stylesheet" href="public/css/vendor/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="public/css/vendor/bootstrap/bootstrap-theme.min.css">
<!-- leaflet.js stylesheet -->
<link rel="stylesheet" href="public/css/vendor/leaflet.css">
<!-- font awesome stylesheet -->
<link rel="stylesheet" href="public/css/vendor/font-awesome.css">
<link rel="stylesheet" href="public/css/main.css">
<script src="public/js/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script>
</head>
<body ng-app="badeseen" ng-controller="MainCtrl">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<h1>{{ title }}</h1>
</div>
</div>
</nav>
<div class="container">
<!-- Example row of columns -->
<div class="row" ng-controller="TabCtrl">
<tabset>
<a class="pull-right btn btn-primary" role="button" ng-click="showHelpModal()"><b>?</b></a>
<tab select="invalidateMapSize()">
<tab-heading>
<span class="fa fa-map-marker"></span> Karte
</tab-heading>
<div ng-controller="MapTabCtrl" class="map">
<leaflet center="center" defaults="defaults" markers="markers" legend="legend" events="events">
</leaflet>
</div>
</tab>
<tab ng-controller="LakeListTabCtrl">
<tab-heading>
<span class="fa fa-list"></span> Liste</tab-heading>
<!-- lake description partial -->
<div data-ng-include data-src="'public/partials/lakeDescription.html'"></div>
</tab>
</tabset>
</div>
<!-- .row fin -->
</div>
<!-- .container fin -->
<footer class="navbar">
<div class="container">
<div class="col-md-{{ footerColumns }}" ng-show="footNotice">
<p ng-bind-html="footNotice | trustHtml"></p>
</div>
<div class="col-md-{{ footerColumns }}" ng-show="contributors">
<h3 class="h3">Mitwirkende</h3>
<ul>
<li ng-repeat="contributor in contributors">
<!-- website is given. thus the contributor will get a link to her/his website -->
<a ng-show="contributor.website" href="{{ contributor.website }}" title="{{ contributor.website | prettifyWebsiteLink }}">
{{ contributor.name }}
</a>
<!-- no website given, plain name is shown -->
<span ng-hide="contributor.website">{{ contributor.name }}</span>
<small ng-show="contributor.mail">
<a href="mailto:{{ contributor.mail }}">
<span class="fa fa-envelope"></span>
</a>
</small>
</li>
</ul>
</div>
<div class="col-md-{{ footerColumns }}" ng-show="labInfo.logoPath">
<a href="{{ labInfo.website }}" title="{{ labInfo.name }}">
<img ng-src="{{ labInfo.logoPath }}" alt="" width="200px">
<!-- 0111010001101000011001010010000001100011011000010110101101100101001000000110100101110011001000000110000100100000011011000110100101100101 -->
</a>
</div>
</div>
<!-- .container fin -->
</footer>
<!-- jQuery 2 -->
<script src="public/js/vendor/jquery-2.1.1.min.js"></script>
<!-- angular.js -->
<script src="public/js/vendor/angular.min.js"></script>
<!-- bootstrap angular directives -->
<script src="public/js/vendor/ui-bootstrap-0.11.0.min.js"></script>
<!-- bootstrap templates like tabs etc. -->
<script src="public/js/vendor/ui-bootstrap-tpls-0.11.0.min.js"></script>
<!-- leaflet.js mapping library -->
<script src="public/js/vendor/leaflet.js"></script>
<!-- angular leaflet directives -->
<script src="public/js/vendor/angular-leaflet-directive.min.js"></script>
<!-- geolib library for location based calculations like distance -->
<script src="public/js/vendor/geolib.min.js"></script>
<script src="public/js/vendor/angular-leaflet-directive.min.js"></script>
<script src="public/js/vendor/highcharts.src.js"></script>
<script src="public/js/vendor/highcharts-ng.min.js"></script>
<script src="public/js/app.js"></script>
<script src="public/js/constants.js"></script>
<script src="public/js/controllers.js"></script>
<script src="public/js/filters.js"></script>
<script src="public/js/services.js"></script>
</body>
</html>