-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.53 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 1.53 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="个人作品展示 - Portfolio Blog">
<title>作品展示 | Portfolio</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="header">
<div class="header-content">
<a href="index.html" class="logo">
<span class="logo-icon">P</span>
<span>Portfolio</span>
</a>
<nav class="nav-links">
<a href="index.html" class="nav-link active">作品</a>
<a href="admin.html" class="nav-link">管理</a>
</nav>
</div>
</header>
<main class="main">
<h1 class="page-title">我的作品</h1>
<p class="page-subtitle">展示我的创作与项目成果</p>
<div id="works-container" class="works-grid">
</div>
<div id="empty-state" class="empty-state" style="display: none;">
<div class="empty-state-icon">🎨</div>
<h2 class="empty-state-title">暂无作品</h2>
<p class="empty-state-description">还没有添加任何作品,前往管理页面开始添加你的第一个作品吧!</p>
<a href="admin.html" class="btn btn-primary">添加作品</a>
</div>
</main>
<div id="toast-container" class="toast-container"></div>
<script src="js/data.js"></script>
<script src="js/app.js"></script>
</body>
</html>