-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dorfadventure</title>
<link rel="stylesheet" href="docs/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<script>
window.onload = function() {
var path = window.location.pathname;
if (path.endsWith('index.html')) {
path = path.substr(path, path.length - 'index.html'.length);
}
var url = 'https://wa.tabascoeye.de/_/global/'+window.location.host+path+'main.json';
document.getElementById('mapLink').href = url;
// document.getElementById('mapLink').innerText = url;
};
</script>
</head>
<body>
<main role="main" class="container">
<div class="row">
<div class="col">
<h1>Dorfadventure</h1>
<div class="alert alert-warning" role="alert">
<h4 class="alert-heading">3rd Party hosted!</h4>
<p class="mb-0">
Dieses Work Adventure läuft nicht auf einem offiziellem System des Chaosdorfs, sondern dem Server einer chaosnahen Person. Wir danken für die freundliche Unterstützung!
</p>
</div>
</div>
</div>
<div class="row">
<div class="col">
Zum <em>Dorfadventuere</em> geht's hier entlang: <a class="btn btn-primary" id="mapLink" href="" role="button">Zum Dorfadventure</a>
</div>
</div>
</main>
</body>
</html>