Skip to content

Commit b860c3b

Browse files
committed
更新 notes
1 parent 3599d38 commit b860c3b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

static/notes/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Notes</title>
5+
<meta charset="utf-8">
6+
<style>
7+
body { font-family: Arial, sans-serif; margin: 40px; }
8+
.notice { background: #f0f0f0; padding: 20px; border-radius: 5px; }
9+
</style>
10+
</head>
11+
<body>
12+
<div class="notice">
13+
<h1>📝 Notes</h1>
14+
<p>Typst 文档需要手动编译或使用 Tinymist 导出 HTML。</p>
15+
<p>当前时间: <span id="datetime"></span></p>
16+
<p>源文件: <code>notes/main.typ</code></p>
17+
</div>
18+
<script>
19+
document.getElementById('datetime').textContent = new Date().toLocaleString();
20+
</script>
21+
</body>
22+
</html>

0 commit comments

Comments
 (0)