Moved all da shit into a leinelab folder (preparation for merge with Leitstelle)

This commit is contained in:
Moridius 2020-12-27 00:10:54 +01:00
parent d2b101c2cb
commit 07b6845f44
12 changed files with 0 additions and 0 deletions

20
leinelab/index.html Normal file
View file

@ -0,0 +1,20 @@
<html>
<head>
<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://play.wa-test.rc3.cccv.de/_/global/'+window.location.host+path+'main.json';
document.getElementById('mapLink').href = url;
document.getElementById('mapLink').innerText = url;
};
</script>
</head>
<body>
This website contains a map for <a href="https://howto.rc3.world/">rc3</a>.
<br/>
You can access this map at <a id="mapLink" href=""></a>
</body>
</html>