-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathblacklist.html
More file actions
50 lines (50 loc) · 1.33 KB
/
blacklist.html
File metadata and controls
50 lines (50 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>禁用域名 | LexiBridge</title>
<link rel="stylesheet" href="theme.css" />
<link rel="stylesheet" href="global.css" />
<link rel="stylesheet" href="md-layout.css" />
<script type="module" src="./bundle.js"></script>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&display=swap">
</head>
<body>
<nav-drawer>
<top-app-bar slot="top-app-bar"></top-app-bar>
<md-list role="menubar" class="nav">
<md-list-item type="link" href="options.html">单词库</md-list-item>
<md-list-item selected="selected" type="link" href="blacklist.html">禁用域名</md-list-item>
</md-list>
<main slot="app-content">
<h2>禁用域名</h2>
<div id="main" class="table-container">
<div class="scroll-wrapper">
<table>
<thead>
<tr>
<th>域名</th>
<th style="width:1px;"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</main>
</nav-drawer>
<template id="row">
<tr>
<td></td>
<td>
<div>
<md-text-button>删除</md-text-button>
</div>
</td>
</tr>
</template>
<script src="blacklist.js"></script>
</body>
</html>