-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·62 lines (47 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<link rel="stylesheet" href="styles/main.css">
<link rel="stylesheet" href="styles/layout.css">
<link rel="stylesheet" href="styles/element.css">
<link rel="stylesheet" href="styles/popup.css">
<title>PZ - Item & Recipe Editor</title>
</head>
<body>
<div class="popup-overlay"></div>
<div class="popup createNewFile">
<h1></h1>
<input type="text" id="createNewFileInput">
<div class="controls">
<button class="ok"></button>
<button class="cancel"></button>
</div>
</div>
<div class="layout">
<div class="topbar">
<div class="logo"></div>
<div class="logo-text">PZ <strong>IRE</strong></div>
<div class="workspace-path-bar">
<div class="workspace-path-bar-wrap">Media directory Path:</div>
<input type="text" id="workspace-path-browser" placeholder="Copy/Paste the media directory here." tabindex="-1">
</div>
</div>
<div class="menu">
<div class="file-browser">
<div id="createNewFile" class="file option">+ Create new file</div>
<div class="files"></div>
</div>
<div class="items-browser">
<div id="createNewItem" class="item option">+ Create new item</div>
<div id="createNewRecipe" class="item option">+ Create new recipe</div>
<div class="items"></div>
</div>
</div>
<div class="content">
</div>
</div>
<script src="./renderer.js"></script>
</body>
</html>