-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
51 lines (44 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Procedural Map Generator</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.10.2/p5.js"></script>
<script
src="https://cdn.jsdelivr.net/gh/kchapelier/[email protected]/build/poisson-disk-sampling.min.js"></script>
<script src="https://unpkg.com/[email protected]/delaunator.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ngraph.graph.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ngraph.path.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section class="hero is-dark is-bold">
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-2">Procedural Map Generator</h1>
</div>
</div>
</section>
<section class="section">
<div class="container has-text-centered is-size-5">
<p>
The map generator inspired by
<a href="https://store.steampowered.com/app/646570">Slay the Spire</a>.
</p>
<a href="https://yurkth.github.io/stsmapgen/" class="button is-dark is-outlined is-rounded">Refresh</a>
<a href="https://github.com/yurkth/stsmapgen" target="_blank" class="button is-dark is-outlined is-rounded">View
on GitHub</a>
</div>
</section>
<div id="canvas"></div>
<footer class="hero is-dark">
<div class="hero-body has-text-centered">
<p class="has-text-grey-lighter">Copyright © 2020 torin All Rights Reserved.</p>
</div>
</footer>
<script src="sketch.js"></script>
</body>
</html>