-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
51 lines (47 loc) · 1.78 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
50
51
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Apro's Site - Blog</title>
<meta charset='utf-8'>
<meta name='description' content='i am gameing (wtf how are they gameing)'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<script src="https://kit.fontawesome.com/497f4f4907.js" crossorigin="anonymous"></script>
</head>
<body>
<script type="application/javascript">
window.onload = function() {
var navbar = document.getElementById("navbar");
}
function navExpand() {
if (navbar.classList.contains("dropped")) {
navbar.classList.remove("dropped")
} else {
navbar.classList.add("dropped");
}
}
</script>
<div id="navbar" class="sticky">
<a href="javascript:void(0);" class="icon" onclick="navExpand()"><i class="fa fa-bars"></i></a>
<a href="/">Main Page</a>
<a href="aboutme">About Me</a>
<a class="active" href="javascript:void(0);">Blog</a>
<span class="navsocial">
<a class="navsocial" href="https://www.youtube.com/channel/UCk1zcHlOko3j4UcJh-0WWig"><i class="fab fa-youtube"></i></a>
<a class="navsocial" href="https://github.com/Call-Me-Apro"><i class="fab fa-github"></i></a>
<a class="navsocial" href="https://open.spotify.com/user/r4ilax"><i class="fab fa-spotify"></i></a>
</span>
</div>
<div class="content">
<h1>Blog</h1>
<h2>what the fuck is oatmeal?</h2>
<div id="blogposts">
<!-- new blog posts go here -->
<div class="blogpost">
<a href="blog/one-month-gentoo-challenge.html">One Month Gentoo Challenge</a><br>
<span class="date">11th February 2022</span>
</div>
</div>
</div>
</body>
</html>