This repository has been archived by the owner on Mar 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
79 lines (69 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en" ng-app="arachne" ng-strict-di="true">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="google-site-verification" content="axehIuQKDs9bKUYzUl7hj1IvFMePho1--MppShoNQWk" />
<base id="baseLink" href="/">
<title>Arachne</title>
<link rel="shortcut icon" href="img/arachnelogo.png?build=BUILD_NO">
<link rel="stylesheet" href="css/arachnefrontend.min.css?build=BUILD_NO">
</head>
<body ng-controller="MenuController">
<idai-navbar
project-id="objects"
login-function="openLoginModal()"
logout-function="logout()"
user-object="user"
hide-search-form="currentPath == '/'"
search-scope="searchScopeObject">
</idai-navbar>
<div class="container-fluid">
<div class="messages">
<idai-messages></idai-messages>
</div>
<!-- VIEWS -->
<div ng-cloak ui-view autoscroll></div>
</div>
<idai-footer ng-hide="$root.hideFooter"
ng-class="{tinyfooter: $root.tinyFooter}"
institutions="{'dai': 'http://www.dainst.de/', 'unikoeln': 'http://archaeologie.uni-koeln.de'}"
mailto="[email protected]"
version="-VERSION-STRING-">
</idai-footer>
<script src="arachnefrontend-deps.js?build=BUILD_NO"></script>
<script src="arachnefrontend.min.js?build=BUILD_NO"></script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
// _paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function () {
var u = "//piwik.dainst.org/";
_paq.push(['setTrackerUrl', u + 'piwik.php']);
_paq.push(['setSiteId', 7]);
var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0];
g.type = 'text/javascript';
g.async = true;
g.defer = true;
g.src = u + 'piwik.js';
s.parentNode.insertBefore(g, s);
})();
</script>
<noscript><p><img src="//piwik.dainst.org/piwik.php?idsite=7" style="border:0;" alt=""/></p></noscript>
<!-- End Piwik Code -->
<noscript>
<div id="noscriptinfo">
<h1>
JavaScript ist in Ihrem Browser deaktiviert.<br>Um den vollen Funktionsumfang von <i>Arachne</i> zu nutzen,
aktivieren Sie bitte die JavaScript-Unterstützung Ihres Browsers.
</h1>
<h2>
JavaScript is disabled in your Webbrowser. Please enable JavaScript to use <i>Arachne</i> in its intended
way.
</h2>
</div>
</noscript>
</body>
</html>