-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (89 loc) · 2.59 KB
/
Copy pathindex.html
File metadata and controls
97 lines (89 loc) · 2.59 KB
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
92
93
94
95
96
97
<!doctype html>
<html lang="en-GB">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
<meta name="darkreader-lock" />
<meta
name="description"
content="An easy-to-use Minecraft worldgen datapack configuration tool!"
/>
<link rel="stylesheet" href="styles/main.css" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
/>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Datapack Toolkit</title>
</head>
<body>
{{> intro }} {{> header}}
<div class="work_area">
<!---------- LEFT COLUMN ---------->
<div id="left-col">
<!---------- IMPORT ---------->
<label class="upload-container">
<input
type="file"
id="input"
accept=".zip,.jar"
aria-label="Upload a datapack file"
multiple
/>
<span class="as-button" aria-hidden="true">{{> svg/add }} Add datapack(s)...</span>
</label>
<!---------- DATAPACK LIST ---------->
<div id="datapack-display"></div>
<template id="datapack-template">
<div class="datapack">
<img alt="" />
<div class="name-and-description">
<h3 class="name"></h3>
<p class="description"></p>
</div>
</div>
</template>
{{> export-settings }}
<button type="button" id="export-button">{{> svg/export }} Export datapack(s)...</button>
</div>
<!---------- RIGHT COLUMN ---------->
<div id="config-screen" class="editor hidden">
<div class="empty-editor">
<div>
None of the currently loaded packs<br />
provide a {{> svg/datapack }} <b>Datapack Config</b>!
</div>
</div>
</div>
<div id="structures-screen" class="editor hidden">
<div class="empty-editor">
<div>
None of the currently loaded packs<br />
provide {{> svg/structure }} <b>Structures</b>!
</div>
</div>
</div>
<div id="biomes-screen" class="editor hidden">
<div class="empty-editor">
<div>
None of the currently loaded packs<br />
provide {{> svg/biome }} <b>Biomes</b>!
</div>
</div>
</div>
<div id="loot-screen" class="editor hidden">
<div class="empty-editor">
<div>
{{> svg/loot }} <b>Loot tables</b> are not<br />
yet supported - WIP!
</div>
</div>
</div>
<!-- {{> dialogs/datapack_browser }} -->
{{> widget-templates }}
<script type="module" src="/src/main.ts"></script>
</div>
{{> footer}}
</body>
</html>