-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (54 loc) · 1.76 KB
/
index.html
File metadata and controls
78 lines (54 loc) · 1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Sovereign Search</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app">
<!-- ================= TOP BAR ================= -->
<div id="topBar">
<div id="tabBar">
<button id="newTabBtn">+</button>
<div id="tabsContainer"></div>
</div>
<div id="inputRow">
<button id="sidebarToggleBtn">☰</button>
<!-- Node input with star -->
<div class="input-group">
<input id="nodeInput" type="text" placeholder="127.0.0.1:10102">
<button id="saveNodeBookmarkButton" class="save-btn">⭐</button>
</div>
<button id="applyNodeButton">Apply Node</button>
<!-- SCID input with star -->
<div class="input-group">
<input id="scidInput" type="text" placeholder="SCID">
<button id="saveSCIDBookmarkButton" class="save-btn">⭐</button>
</div>
<button id="loadTelaButton">Load SCID</button>
</div>
</div>
<!-- ================= MAIN AREA ================= -->
<div id="mainArea">
<!-- ===== SIDEBAR (Bookmarks) ===== -->
<aside id="sidebar" class="collapsed">
<h3>Menu</h3>
<button data-manager="settings">Settings</button>
<button data-manager="gnomon">Gnomon</button>
<button data-manager="readme">Readme</button>
<h3>Node Bookmarks</h3>
<div id="sidebarNodeList"></div>
<h3>SCID Bookmarks</h3>
<div id="sidebarSCIDList"></div>
</aside>
<!-- ===== BrowserView lives here ===== -->
<div id="browserArea">
<div id="managerRoot"></div>
</div>
</div>
</div>
<script type="module" src="./renderer.js"></script>
</body>
</html>