aboutsummaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..f6ce0ea
--- /dev/null
+++ b/index.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <title>Vanguard Editor</title>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="theme-color" content="#1D7BA3">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,900;1,400;1,900&display=swap">
+ <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
+ <link rel="stylesheet" href="style.css">
+ </head>
+ <body>
+ <h1>Vanguard</h1>
+ <div id="toolbar">
+ <input type="file" id="open-file" accept=".json,application/json">
+ <div id="theme" class="material-icons">brightness_medium</div>
+ <label id="open" for="open-file" class="material-icons">folder_open</label>
+ <a id="save" class="material-icons">save_alt</a>
+ </div>
+ <div id="main"></div>
+ <div id="unreachable"></div>
+
+ <template id="view-entry">
+ <a class="edit-btn material-icons">edit</a>
+ <h2></h2>
+ </template>
+
+ <template id="edit-entry">
+ <a class="done-btn material-icons">done</a>
+ <h2></h2>
+ <textarea id="body" rows="1"></textarea>
+ <div class="choices"></div>
+ <div class="add-choice material-icons">add</div>
+ </template>
+
+ <template id="edit-choice">
+ <div class="choice-delete material-icons">clear</div>
+ <textarea rows="1"></textarea>
+ </template>
+
+ <script src="dexie.js"></script>
+ <script src="markup.js"></script>
+ <script src="main.js"></script>
+ </body>
+</html>