-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
99 lines (90 loc) · 3.89 KB
/
Copy pathabout.html
File metadata and controls
99 lines (90 loc) · 3.89 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>关于 - MYTP-交流与心得</title>
<link rel="stylesheet" href="/flotynt/css/style.css">
</head>
<body>
<header class="site-header">
<div class="container">
<div class="logo">
<a href="/flotynt/">
<span class="logo-text">MYTP-交流与心得</span>
</a>
</div>
<nav class="main-nav">
<ul>
<li><a href="/flotynt/">首页</a></li>
<li><a href="/flotynt/tutorials.html">教程</a></li>
<li><a href="/flotynt/about.html" class="active">关于</a></li>
</ul>
</nav>
<button class="theme-toggle" id="themeToggle" aria-label="切换主题">
<span class="icon-light">Light</span>
<span class="icon-dark">Dark</span>
</button>
</div>
</header>
<main class="main-content">
<div class="container">
<article class="about-page">
<h1>关于本站</h1>
<section class="about-section">
<h2>网站简介</h2>
<p>这是一个基于纯 HTML/CSS/JavaScript 构建的静态技术教程网站,托管在 GitHub Pages 上,完全免费使用。</p>
</section>
<section class="about-section">
<h2>技术栈</h2>
<ul>
<li><strong>前端框架</strong>: 原生 HTML5 + CSS3 + JavaScript (ES6+)</li>
<li><strong>托管服务</strong>: GitHub Pages</li>
<li><strong>主题支持</strong>: 明暗主题切换</li>
<li><strong>响应式设计</strong>: 支持移动端访问</li>
</ul>
</section>
<section class="about-section">
<h2>特点</h2>
<ul>
<li>完全免费,无需服务器成本</li>
<li>部署简单,推送代码即可发布</li>
<li>访问快速,利用 GitHub CDN 加速</li>
<li>支持暗色模式,保护眼睛</li>
<li>纯静态,安全无后端漏洞风险</li>
</ul>
</section>
<section class="about-section">
<h2>联系方式</h2>
<p>如有问题或建议,欢迎通过以下方式联系:</p>
<ul>
<li>GitHub: <a href="https://github.com/MYTPONS/flotynt">MYTPONS/flotynt</a></li>
</ul>
</section>
</article>
</div>
</main>
<footer class="site-footer">
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h3>关于本站</h3>
<p>一个分享技术教程的静态网站,托管在 GitHub Pages。</p>
</div>
<div class="footer-section">
<h3>友情链接</h3>
<ul>
<li><a href="https://github.com/MYTPONS/flotynt">GitHub</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2026 MYTP-交流与心得. 使用 GitHub Pages 托管</p>
<p><a href="https://icp.gov.moe/?keyword=20260290" target="_blank">萌ICP备20260290号</a></p>
</div>
</div>
</footer>
<script src="/flotynt/js/data.js"></script>
<script src="/flotynt/js/main.js"></script>
</body>
</html>