-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 876 Bytes
/
Copy pathindex.html
File metadata and controls
21 lines (21 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#07110e" />
<meta name="description" content="从第一性原理系统掌握大模型:理论、实现、实验、训练、对齐与部署。" />
<link rel="icon" href="/favicon.svg" type="image/svg+xml" />
<title>UNDER THE HOOD · 大模型系统课</title>
<script>
try {
const saved = localStorage.getItem('uth-theme')
document.documentElement.dataset.theme = saved || (matchMedia('(prefers-color-scheme: light)').matches ? 'light' : 'dark')
} catch (_) { document.documentElement.dataset.theme = 'dark' }
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>