2026-06-30 09:10:05 +10:00
|
|
|
<!doctype html>
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
<title>RQ3 Story Tool</title>
|
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<header class="app-header">
|
|
|
|
|
<h1>RQ3 Story Tool</h1>
|
|
|
|
|
<div class="header-actions">
|
|
|
|
|
<label class="button" for="import-file">Import</label>
|
|
|
|
|
<input type="file" id="import-file" accept="application/json" hidden>
|
|
|
|
|
<button id="export-all-btn" class="button">Export All</button>
|
|
|
|
|
<button id="export-log-btn" class="button">Export Log</button>
|
2026-07-03 21:44:11 +10:00
|
|
|
<button id="clear-all-btn" class="button" style="color:red">Clear All</button>
|
2026-06-30 09:10:05 +10:00
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
<div class="layout">
|
|
|
|
|
<aside class="sidebar">
|
|
|
|
|
<nav class="view-tabs">
|
|
|
|
|
<button class="tab-btn" data-view="tables">Tables</button>
|
|
|
|
|
<button class="tab-btn" data-view="npcs">NPCs</button>
|
|
|
|
|
<button class="tab-btn" data-view="enemies">Enemies</button>
|
|
|
|
|
<button class="tab-btn" data-view="combat">Combat</button>
|
2026-07-03 16:00:54 +10:00
|
|
|
<button class="tab-btn" data-view="characters">Characters</button>
|
|
|
|
|
<button class="tab-btn" data-view="adventure">Adventure</button>
|
2026-06-30 09:10:05 +10:00
|
|
|
</nav>
|
|
|
|
|
<div id="sidebar-content"></div>
|
|
|
|
|
</aside>
|
|
|
|
|
|
|
|
|
|
<main id="main-panel"></main>
|
|
|
|
|
|
|
|
|
|
<aside class="log-panel">
|
|
|
|
|
<h2>Session Log</h2>
|
|
|
|
|
<input type="search" id="log-search" placeholder="Search log...">
|
|
|
|
|
<div class="note-entry">
|
|
|
|
|
<textarea id="note-input" placeholder="Add a note..."></textarea>
|
|
|
|
|
<button id="note-submit" class="button">Add Note</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="log-entries"></div>
|
|
|
|
|
</aside>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="export-reminder-modal" class="modal hidden">
|
|
|
|
|
<div class="modal-box">
|
|
|
|
|
<p>You have unsaved changes. Export before leaving?</p>
|
|
|
|
|
<button id="reminder-export" class="button">Export Now</button>
|
|
|
|
|
<button id="reminder-leave" class="button">Leave Anyway</button>
|
|
|
|
|
<button id="reminder-cancel" class="button">Cancel</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="vendor/marked.umd.js"></script>
|
|
|
|
|
<script src="app.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|