-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
39 lines (36 loc) · 1.3 KB
/
blog.html
File metadata and controls
39 lines (36 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Blog posts and notes by Frouk">
<title>Frouk's Blogs</title>
<script src="scripts/script.js" defer></script>
</head>
<body>
<header>
<div class="main-nav-list">
<div class="brand-slot">
<a class="site-brand" href="./index.html">Frouk</a>
</div>
<nav aria-label="Main navigation">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./blog.html" aria-current="page">Blog</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<main>
<h1>Blog</h1>
<ul class="blog-grid" id="all-posts">
</ul>
</main>
<footer>
<p>© <span id="year">2025</span> Frouk — <a href="https://github.com/Frouk3">GitHub</a></p>
</footer>
</body>
</html>