rc3.hannover/index.html
2020-11-15 22:50:47 +01:00

20 lines
758 B
HTML

<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>