-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabb.html
55 lines (54 loc) · 1.73 KB
/
tabb.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tabb</title>
<link rel="stylesheet" href="tabb.css" />
</head>
<body>
<div class="__tabb_root">
<!-- 标题 -->
<header>
<h1>Tabb</h1>
</header>
<!-- 主要内容区域 -->
<section class="__tabb_sec">
<aside class="__tabb_sidebar">
<ul class="__tabb_menu"></ul>
</aside>
<div class="__tabb_layout_options">
<div key="list">L</div>
<div key="card">C</div>
<div key="single">S</div>
</div>
<main class="__tabb_pages">
<div id="pages">
<div class="group" style="display: none">
<div class="group-info">
<div class="title">Web 前端学习</div>
<div class="page-count">4个分页</div>
<div class="detail">
<div class="create-time">创建于 2021/12/15 下午2:17:41</div>
<div class="actions">
<div>恢复全部</div>
<div class="disabled">删除全部</div>
</div>
</div>
</div>
<div class="page">
<img
src="https://developer.chrome.com/images/meta/favicon-32x32.png"
alt=""
/>
<span>Extension development overview - Chrome Developers</span>
</div>
</div>
</div>
</main>
</section>
</div>
<script src="tabb.js" type="module"></script>
</body>
</html>