-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (56 loc) · 2.21 KB
/
Copy pathindex.html
File metadata and controls
69 lines (56 loc) · 2.21 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PF系列插件文档</title>
<meta name="description" content="提供丰富的MCDR插件,助力Minecraft服务器管理">
<meta name="keywords" content="MCDR,插件,Minecraft,服务器管理,QQ机器人,WebUI">
<!-- Favicon -->
<link rel="icon" href="/assets/img/logo.png">
<!-- TailwindCSS CDN -->
<script src="https://cdn.tailwindcss.com" data-cfasync="false"></script>
<!-- Alpine.js CDN -->
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<!-- FontAwesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- 主应用JS -->
<script type="module" src="assets/js/main.js"></script>
<!-- css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- 自定义配置 -->
<script>
// Tailwind 配置
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: 'var(--color-primary, #3b82f6)', // 使用CSS变量
},
fontFamily: {
sans: ['system-ui', '-apple-system', 'sans-serif'],
}
}
}
}
</script>
</head>
<body class="bg-gray-50">
<!-- 装饰性几何图形 -->
<div class="blob-shape w-96 h-96 top-0 right-0"></div>
<div class="blob-shape w-64 h-64 bottom-0 left-0"
style="background-color: rgba(var(--color-primary-rgb, 249, 115, 22), 0.05);"></div>
<!-- 加载顶部导航 -->
<div id="header-container"></div>
<!-- 主内容区 -->
<main class="container mx-auto px-4 py-16 relative min-h-screen" id="home-content">
<!-- 首页内容将通过 main.js 加载 -->
<div class="flex justify-center items-center h-64">
<div class="animate-spin rounded-full h-12 w-12 border-b-2 border-primary"></div>
</div>
</main>
<!-- 加载底部信息 -->
<div id="footer-container"></div>
</body>
</html>