generated from workadventure/map-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (83 loc) · 4.75 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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="robots" content="noindex">
<meta name="title" content="WorkAdventure Starter Kit">
<link href="src/style.css" rel="stylesheet">
<link rel="icon" href="https://workadventu.re/favicon-96x96.png">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link href="https://unpkg.com/[email protected]/css/nes.min.css" rel="stylesheet" />
<title>WorkAdventure Starter Kit</title>
<script>
window.onload = function() {
const host = window.location.host;
let path = window.location.pathname;
if (path.endsWith('index.html')) {
path = path.substr(path, path.length - 'index.html'.length);
}
const instanceId = Math.random().toString(36).substring(2, 15);
const url = `https://play.workadventu.re/_/${instanceId}/${host}${path}map.json`;
document.getElementById('testMapURL').href = url;
document.getElementById('testMapBtnURL').href = url;
document.getElementById('testMapURL').innerText = url;
const jsonURL = window.location.protocol+'//'+window.location.host+path+'map.json';
document.getElementById('jsonURL').innerText = jsonURL;
const gettingStartedLink = 'https://workadventu.re/getting-started?name=Map&mapUrl='+jsonURL;
document.getElementById('gettingStartedLink').href = gettingStartedLink;
};
</script>
</head>
<body>
<header>
<div class="logo">
<a href="https://workadventu.re/" target="_blank" title="workadventure"><img src="https://workadventu.re/images/general/logo.svg" alt="WorkAdventure logo"/></a>
</div>
</header>
<main>
<div class="nes-container with-title is-centered" style="margin-top: 3rem">
<p class="title">Useful links</p>
<div class="content">
<div class="socials">
<a href="https://discord.gg/G6Xh9ZM9aR" target="_blank" title="discord">
<img src="https://workadventu.re/images/social/discord.png" alt="discord">
</a>
<a href="https://github.com/thecodingmachine/workadventure" target="_blank" title="github">
<img src="https://workadventu.re/images/social/github.png" alt="github">
</a>
<a href="https://www.youtube.com/channel/UCXJ9igV-kb9gw1ftR33y5tA" target="_blank" title="youtube">
<img src="https://workadventu.re/images/social/youtube.png" alt="youtube">
</a>
<a href="https://twitter.com/Workadventure_" target="_blank" title="twitter">
<img src="https://workadventu.re/images/social/twitter.png" alt="twitter">
</a>
<a href="https://www.instagram.com/workadventure_" target="_blank" title="instagram">
<img src="https://workadventu.re/images/social/instagram.png" alt="instagram">
</a>
<a href="https://www.linkedin.com/company/workadventu-re" target="_blank" title="linkedin">
<img src="https://workadventu.re/images/social/linkedin.png" alt="linkedin">
</a>
</div>
<div class="help">
<a href="https://www.youtube.com/watch?v=lu1IZgBJJD4&list=PL7jmrMKZfjCnz36FvezxJ-Tshuh3Zz-nc&ab_channel=WorkAdventure" class="nes-btn is-primary" target="_blank">Watch tutorials</a>
<a href="https://discord.gg/G6Xh9ZM9aR" class="nes-btn is-primary" target="_blank">Talk to the community</a>
</div>
</div>
</div>
<div class="nes-container with-title is-centered" style="margin-top: 1rem">
<p class="title">Test this map</p>
<p>You can test this map at <a id="testMapURL" href="" class="url"></a></p>
<p><a id="testMapBtnURL" href="" class="nes-btn is-primary">Test this map</a></p>
</div>
<div class="nes-container with-title is-centered" style="margin-top: 1rem">
<p class="title">Happy with the result?</p>
<p>Register your room on Workadventu.re</p>
<p><a id="gettingStartedLink" href="" class="nes-btn is-primary">Publish this map</a></p>
<p>or copy and paste the map URL in WorkAdventu.re's administration panel:</p>
<p><span id="jsonURL" class="url"></span></p>
</div>
</main>
<footer><a href="https://workadventu.re/" target="_blank" title="workadventu.re">© WorkAdventure</a></footer>
</body>
</html>