-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
74 lines (65 loc) · 2 KB
/
Copy pathblog.html
File metadata and controls
74 lines (65 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/Assets/ico/user.ico" type="image/x-icon">
<title>Duc Le Blog</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" />
<link rel="stylesheet" href="Assets/styles/blog.css" />
</head>
<body>
<!-- Header + Nav -->
<header class="glass">
<nav class="glass">
<a href="index.html">DUC LE/ PROFILE</a>
<a href="educaiton.html">EDUCATION</a>
<a href="project.html">PROJECT</a>
<a href="blog.html">BLOG</a>
<a href="research.html">RESEARCH</a>
<a href="skillaward.html">SKILL/AWARD</a>
<a href="internship.html">INTERNSHIP</a>
</nav>
</header>
<!-- Main Blog Container -->
<div class="container">
<!-- Blog Content -->
<main class="main-content glass">
<h1>Blog Posts</h1>
<div id="scrollable-area" style="flex: 1; overflow-y: auto;">
<!-- Dynamic blog post previews -->
<div id="blog-list"></div>
<!-- Blog detail view -->
<div id="blog-detail" class="hidden">
<h1 id="detail-title"></h1>
<p id="detail-date"></p>
<div id="detail-content"></div>
</div>
</div>
<!-- Go back link -->
<a href="blog.html" id="go-back" class="glass" style="
display: none;
position: sticky;
bottom: 0;
background-color: #1a252f;
color: white;
text-align: center;
padding: 1em;
text-decoration: none;
border-top: 1px solid #ccc;
z-index: 10;
">
← Go Back
</a>
<!-- Pagination -->
<div id="pagination" class="pagination"></div>
</main>
</div>
<!-- Footer -->
<footer class="glass">
<p>© 2025 Duc Le. All rights reserved.</p>
</footer>
<!-- Blog data loader -->
<script type="module" src="context/blog.js"></script>
</body>
</html>