-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
54 lines (47 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<title>Bedrock loot-table generator</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!-- Enable responsive viewport -->
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<!-- jQuery -->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"
></script>
<!-- Bootstrap4 -->
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<!-- fontawesome5 -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.12.1/css/all.css"
/>
<!-- JSON-Editor -->
<script src="https://cdn.jsdelivr.net/npm/@json-editor/[email protected]/dist/jsoneditor.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="styles.css" />
<style type="text/css">
body {
margin: 1em;
}
</style>
</head>
<body>
<h1>Bedrock Loot-table Generator</h1>
<p>
This website helps you generate JSON loot-table files for the Bedrock Edition of Minecraft.
You can learn more about loot tables on the <a href="https://wiki.bedrock.dev/loot/loot-tables.html">Bedrock Wiki</a>.
<br/>
🚀 <i><a href="https://github.com/SirLich/bedrock-windmill">View this project on github.</a></i>
</p>
<div id="editor_holder"></div>
<script type="text/javascript" src="editor.js"></script>
</body>
</html>