-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
39 lines (28 loc) · 814 Bytes
/
Copy pathblog.html
File metadata and controls
39 lines (28 loc) · 814 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Blog</title>
<link rel="stylesheet" href="/assets/css/styles.css">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/blog.html" class="current">Blog</a>
<a href="/staff.html">Staff</a>
</nav>
<h1>Latest Posts</h1>
<ul>
<li>
<h2><a href="/2026/01/10/banana.html">Banana - 10 Jan 2026</a></h2>
<p>A banana is an edible fruit – botanically a berry – produced by several
kinds of large herbaceous flowering plants in the genus Musa.</p>
</li>
<li>
<h2><a href="/2025/12/31/apple.html">Apple - 31 Dec 2025</a></h2>
<p>An apple is a sweet, edible fruit produced by an apple tree.</p>
</li>
</ul>
</body>
</html>