-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
38 lines (33 loc) · 1.43 KB
/
index.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TextBoard</title>
<link rel="shortcut icon" href="/static/textboard-icon-new.svg">
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
<link rel="stylesheet" href="/static/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/default.min.css">
<script type="module" src="/static/client.js"></script>
</head>
<body>
<div id="outer">
<main class="container" id="inner">
<header id="header">
<button type="button" id="edit">编辑</button>
<button type="button" id="submit" class="hidden">提交</button>
<button type="button" id="manage" class="secondary hidden">管理</button>
</header>
<hr>
<article id="text-container">
<div id="text">正在加载内容……</div>
<textarea id="textarea" class="hidden"></textarea>
</article>
<hr>
<footer>
<h6>Textboard by <a href="https://hcwiki.netlify.app" target="_blank" rel="noopener">4n0n4me</a>. CSS by <a rel="noopener" href="https://picocss.com" target="_blank" rel="noopener">Pico</a>.</h6>
</footer>
</main>
</div>
</body>
</html>