rc3.hannover/leinelab/index.html

21 lines
758 B
HTML
Raw Normal View History

2020-11-04 19:03:10 +00:00
<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);
}
2020-11-15 21:50:47 +00:00
var url = 'https://play.wa-test.rc3.cccv.de/_/global/'+window.location.host+path+'main.json';
2020-11-04 19:03:10 +00:00
document.getElementById('mapLink').href = url;
document.getElementById('mapLink').innerText = url;
};
</script>
</head>
<body>
2020-11-15 21:38:26 +00:00
This website contains a map for <a href="https://howto.rc3.world/">rc3</a>.
2020-11-04 19:03:10 +00:00
<br/>
You can access this map at <a id="mapLink" href=""></a>
</body>
</html>