-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles.css">
<title>Home - Perhaps</title>
</head>
<body>
<header>
<a href="./"><h1>Perhaps</h1></a>
<h4>A blog by danemasen</h4>
</header>
<main>
<div id="welcome-msg">
<h2>Welcome!</h2>
<p>I'm danemasen, or just Dane for short, and I run this blog that's about a bunch of different things that I find interesting.</p>
<h2>Contact</h2>
<p>Any requests, questions or concerns can be sent to my email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div id="latest">
<h2>Latest Posts</h2>
<a href="posts/wireguard_with_mullvad_vpn_unix.html"><p class="link">[2024-10-11] #3 - Wireguard with Mullvad VPN on UNIX-like Systems</p></a>
<a href="posts/openssh_basics_guide_unix.html"><p class="link">[2024-06-30] #2 - OpenSSH Basics Guide for UNIX-like Systems</p></a>
<a href="posts/command_line_basics_guide_unix.html"><p class="link">[2024-06-29] #1 - Command Line Basics Guide for UNIX-like Systems</p></a>
</div>
<div id="rss">
<a href="feed.xml">RSS</a>
</div>
<div id="all">
<a href="allposts.html">All Posts</a>
</div>
</main>
<special-footer></special-footer>
<script src="scripts.js"></script>
</body>
</html>