-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
37 lines (31 loc) · 1.17 KB
/
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
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ilya "StormLord07" Repnev - Blog</title>
<link rel="stylesheet" href="styles_index.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<header>
<h1>Ilya "StormLord07" Repnev</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div>This page is under development, I dont know how I want it to look so here is a basic template.</div>
<main id="blog-container">
<!-- List of blog post titles will be dynamically inserted here -->
</main>
<!-- Container to display the full content of a post -->
<section id="content-container"></section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/js/all.min.js"></script>
<script src="src/footer.js"></script>
<script src="src/posts.js"></script>
</body>
</html>