-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
34 lines (29 loc) · 938 Bytes
/
blog.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
<!DOCTYPE html>
<html>
<head>
<title>My Blog</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<a href="https://jesmjones.github.io/">back to home<a>
<h1>Blog:</h1>
</header>
<section class="blog-posts">
<div class="post">
<h2><a href="post1.html">Explain it to me like I’m five: Connectomics, what's the hype, and why do we care so much?</a></h2>
<p>July 1st, 2023</p>
</div>
<div class="post">
<h2><a href="post2.html">Should bugs have rights? Invertebrates in animal welfare, and why they deserve better from us.</a></h2>
<p>June 30th, 2023</p>
</div>
<!-- Add more blog post blocks as needed -->
</section>
<footer>
<p>© 2023 My Blog. All rights reserved.</p>
</footer>
</div>
</body>
</html>