-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (87 loc) · 3.42 KB
/
Copy pathindex.html
File metadata and controls
99 lines (87 loc) · 3.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PyQuick 主页</title>
<!-- SEO元标签 -->
<meta name="description" content="PyQuick - 轻量级Python工具平台">
<meta name="keywords" content="Python, PyQuick, 编程, 开发工具">
<!-- Open Graph 标签,用于社交媒体共享 -->
<meta property="og:title" content="PyQuick 主页">
<meta property="og:description" content="轻量级Python工具平台">
<meta property="og:type" content="website">
<meta property="og:url" content="https://pyquick.github.io/">
<!-- 添加主题色元标签 -->
<meta name="theme-color" content="#f3f9ff" id="theme-color">
<meta name="color-scheme" content="light dark">
<!-- 预加载CSS -->
<link rel="preload" href="./static/css/index.css" as="style">
<link rel="stylesheet" href="/static/css/index.css">
<!-- 预连接CDN -->
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">
<!-- 引入 Font Awesome 图标 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- 引入额外的动画样式 -->
<link rel="stylesheet" href="/static/css/animation-additions.css">
</head>
<body>
<div class="container">
<!-- 主标题 -->
<h1 class="main-title">Hi, I'm Ghltbm<br/>(Haoyang Li)</h1>
<!-- 功能卡片容器 -->
<div class="grid-container">
<a href="./pyquick/main.html" class="card">
<div class="card-content">
<i class="fas fa-rocket icon"></i>
<h2>PyQuick 介绍</h2>
<p>了解我们的发展历程和核心功能</p>
</div>
</a>
<a href="./data/stable.html" class="card">
<div class="card-content">
<i class="fas fa-download icon"></i>
<h2>下载 PyQuick</h2>
<p>获取最新版本</p>
</div>
</a>
<a href="./daily/newyear.html" class="card">
<div class="card-content">
<i class="fas fa-calendar-alt icon"></i>
<h2>一些记录</h2>
<p>查看最新开发动态</p>
</div>
</a>
<a href="./insiders/main.html" class="card">
<div class="card-content">
<i class="fas fa-cogs icon"></i>
<h2>Insider Preview</h2>
<p>最新版本文档(dev不完整)</p>
</div>
</a>
<a href="./issue/index.html" class="card">
<div class="card-content">
<i class="fas fa-comments icon"></i>
<h2>问题反馈</h2>
<p>在此提出问题或参与讨论</p>
</div>
</a>
</div>
</div>
<!-- 底部社交链接 -->
<footer class="social-links">
<a href="https://github.com/pyquick" target="_blank" title="Github">
<i class="fab fa-github"></i>
</a>
<a href="https://www.twitter.com/exe258011" target="_blank" title="Twitter">
<i class="fab fa-twitter"></i>
</a>
<a href="#" id="email-icon" title="Email">
<i class="fas fa-envelope"></i>
</a>
</footer>
<!-- 在页面底部加载JS,提高性能 -->
<script src="/static/js/index.js" defer></script>
</body>
</html>