-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
50 lines (46 loc) · 1.67 KB
/
Copy pathblog.html
File metadata and controls
50 lines (46 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog - Ahhyun Lucy Lee</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">Ahhyun Lucy Lee</a>
<ul class="nav-menu">
<li><a href="index.html" class="nav-link">About</a></li>
<li><a href="blog.html" class="nav-link active">Blog</a></li>
<li><a href="index.html#contact" class="nav-link">Contact</a></li>
</ul>
</div>
</nav>
<!-- Blog Hero -->
<section class="blog-hero">
<div class="container">
<h1 class="blog-page-title">Blog</h1>
<p class="blog-page-subtitle">Moments from research, conferences, travel, and life.</p>
</div>
</section>
<!-- Blog Posts -->
<section class="section">
<div class="container">
<div id="posts-container" class="posts-list"></div>
<div id="empty-state" class="blog-empty" style="display:none;">
<i class="fas fa-pen-nib"></i>
<p>No posts yet — check back soon!</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>© 2026 Ahhyun Lucy Lee. All rights reserved.</p>
<p class="footer-note">Last updated: May 2026</p>
</footer>
<script src="blog.js"></script>
</body>
</html>