-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (92 loc) · 3.74 KB
/
Copy pathindex.html
File metadata and controls
97 lines (92 loc) · 3.74 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
<!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/" class="active">首页</a></li>
<li><a href="/flotynt/tutorials.html">教程</a></li>
<li><a href="/flotynt/about.html">关于</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">
<!-- Hero Section -->
<section class="hero">
<div class="container">
<h1>欢迎来到 MYTP-交流与心得</h1>
<p class="hero-subtitle">分享技术知识,记录学习成长</p>
<a href="/flotynt/tutorials.html" class="btn btn-primary">浏览教程</a>
</div>
</section>
<!-- Featured Posts -->
<section class="featured-posts">
<div class="container">
<h2 class="section-title">精选教程</h2>
<div class="posts-grid" id="featuredGrid">
<!-- Posts will be loaded by JavaScript -->
</div>
</div>
</section>
<!-- Categories -->
<section class="categories">
<div class="container">
<h2 class="section-title">教程分类</h2>
<div class="categories-grid">
<a href="/flotynt/tutorials.html?category=linux" class="category-card">
<span class="category-name">Linux</span>
</a>
<a href="/flotynt/tutorials.html?category=programming" class="category-card">
<span class="category-name">编程开发</span>
</a>
<a href="/flotynt/tutorials.html?category=devops" class="category-card">
<span class="category-name">运维部署</span>
</a>
<a href="/flotynt/tutorials.html?category=tools" class="category-card">
<span class="category-name">工具使用</span>
</a>
</div>
</div>
</section>
</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>