-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontainer.html
More file actions
36 lines (32 loc) · 1.53 KB
/
Copy pathcontainer.html
File metadata and controls
36 lines (32 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Subtabs</title>
<link rel="icon" href="icons/icon128.png" />
<link rel="stylesheet" href="container.css" />
</head>
<body>
<header id="topbar">
<span id="brand">Subtabs</span>
<div id="layouts" role="group" aria-label="Layout">
<button class="layout-btn" data-layout="single" title="Single pane">
<svg viewBox="0 0 20 20"><rect x="2" y="2" width="16" height="16"/></svg>
</button>
<button class="layout-btn" data-layout="vertical" title="Split vertical">
<svg viewBox="0 0 20 20"><rect x="2" y="2" width="7" height="16"/><rect x="11" y="2" width="7" height="16"/></svg>
</button>
<button class="layout-btn" data-layout="horizontal" title="Split horizontal">
<svg viewBox="0 0 20 20"><rect x="2" y="2" width="16" height="7"/><rect x="2" y="11" width="16" height="7"/></svg>
</button>
<button class="layout-btn" data-layout="grid" title="2×2 grid">
<svg viewBox="0 0 20 20"><rect x="2" y="2" width="7" height="7"/><rect x="11" y="2" width="7" height="7"/><rect x="2" y="11" width="7" height="7"/><rect x="11" y="11" width="7" height="7"/></svg>
</button>
</div>
<span id="hint" title="The address bar holds this whole layout — press Ctrl+D to bookmark it as a workspace.">Ctrl+D bookmarks this workspace</span>
</header>
<main id="panes"></main>
<script src="container.js"></script>
</body>
</html>