-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.html
49 lines (45 loc) · 1.76 KB
/
blogs.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Posts - My Personal Website</title>
<link rel="stylesheet" href="/styles.css">
<script src="/load-nav.js"></script>
</head>
<body>
<header>
<h1>My Personal Website</h1>
</header>
<div id="navigation-placeholder"></div>
<div class="container">
<h2>Blog Posts</h2>
<h3>October 2024</h3>
<article class="blog-preview">
<h4><a href="blogs/another-interesting-topic.html">Another Interesting Topic</a></h4>
<p class="post-meta">Posted on October 10, 2024</p>
<p>
# Another Interesting Topic...</p>
<a href="blogs/another-interesting-topic.html" class="read-more">Read more</a>
</article>
<article class="blog-preview">
<h4><a href="blogs/the-third.html">The Third Blog Post</a></h4>
<p class="post-meta">Posted on October 10, 2024</p>
<p>
# The Third Blog Post
Mentioned in [My First Blog Post](first-blog-post.html)</p>
<a href="blogs/the-third.html" class="read-more">Read more</a>
</article>
<article class="blog-preview">
<h4><a href="blogs/first-blog-post.html">Welcome to my first blog post!</a></h4>
<p class="post-meta">Posted on October 09, 2024</p>
<p>
# Welcome to my first blog post!...</p>
<a href="blogs/first-blog-post.html" class="read-more">Read more</a>
</article>
</div>
<footer>
<p>© 2023 Your Name. All rights reserved.</p>
</footer>
</body>
</html>