-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
49 lines (44 loc) · 2.45 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
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">
<meta name="description" content="Where Ideas Meet, Minds Flourish: Step into The Hall of Ideas!">
<link rel="icon" type="image/x-icon" href="./assets/images/HoI_Favicon.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/CSS/style.css">
<link rel="stylesheet" href="./assets/CSS/blog.css">
<script src="https://kit.fontawesome.com/dd3f6d2eee.js" crossorigin="anonymous"></script>
<script defer src="./assets/js/logic.js"></script>
<script defer src="./assets/js/blog.js"></script>
<title>Post Feed | The Hall of Ideas</title>
</head>
<body class="flex">
<header class="flex full-header">
<div class="disclaimer">
<p>THIS SITE IS FOR EDUCATIONAL PURPOSES ONLY | FIND THE REPO <span class="repo"><a href="https://github.com/Rod-Freedom/C4-The_Hall_of_Ideas" target="_blank">HERE</a></span>.</p>
</div>
<section class="main-header main-color flex">
<div id="brand" class="pointer brand flex">
<i id="logo" class="fa-regular fa-head-side-brain"></i>
<h1>The Hall of <span>Ideas</span></h1>
</div>
<button id="mode-btn" class="flex"><h2 class="mode-text hidden"></h2><i id="mode-icon" class="fa-light fa-lightbulb"></i></button>
</section>
</header>
<main class="site-main flex">
<button id="return-btn" class="btn">← Return </button>
<section class="posts flex">
<div class="hide error-div">
<i class="fa-solid fa-heart-crack"></i>
<h1 class="error flex">Oh snap!<span class="no-posts">There are no posts here yet...</span></h1>
</div>
</section>
</main>
<footer class="main-footer flex">
<p>MADE BY <span><a href="https://github.com/Rod-Freedom" target="_blank">ROD</a></span> WITH CARE AND DEDICATION.</p>
</footer>
</body>
</html>