-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1.06 KB
/
index.html
File metadata and controls
29 lines (28 loc) · 1.06 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitTok - 像刷 TikTok 一样刷 GitHub Trending</title>
<link rel="stylesheet" href="style.css">
<!-- Favicon -->
<link rel="icon" href="logo.png" type="image/png">
<link rel="apple-touch-icon" href="logo.png">
<link rel="shortcut icon" href="logo.png" type="image/png">
</head>
<body>
<div class="controls">
<button type="button" data-since="daily" class="time-range-btn active">今日</button>
<button type="button" data-since="weekly" class="time-range-btn">本周</button>
<button type="button" data-since="monthly" class="time-range-btn">本月</button>
</div>
<div class="gittok-feed">
<!-- GitHub Trending 项目将在这里动态加载 -->
<div class="gittok-item">
<h1>欢迎来到 GitTok!</h1>
<p>正在加载 GitHub Trending 项目...</p>
</div>
</div>
<script src="script.js"></script>
</body>
</html>