We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3599d38 commit b860c3bCopy full SHA for b860c3b
static/notes/index.html
@@ -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