blob: 868f1cecccdddda05c9507ad878bc1994d8c6621 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" href="/index.css">
<link rel="stylesheet" href="/posts.css">
<title>Matthew Kosarek</title>
<link rel="shortcut icon" href="/favicon/favicon.ico" type="image/x-icon">
</head>
<body>
<header>
<h1>Matthew Kosarek</h1>
<nav>
<ul>
<li><a href='/'>🏡 Home</a></li>
<li><a href='/resume.html'>📘 CV</a></li>
<li><a href="https://www.linkedin.com/in/matthew-kosarek/">🏢 LinkedIn</a></li>
<li><a href='/posts.html'>📝 Posts</a></li>
</ul>
</nav>
</header>
<article>
<h2>Hello, World!</h2>
<h3>Created 11/12/2022, 8:48:06 PM. Last updated: 11/15/2022, 7:49:33 AM</h3>
<p>
Hello, world!
</p>
<p>
This is the first test of my simple, static blogging system. My goal is to avoid using anything too heavy and, instead, provide a simple script that will get run whenever I update a blog post. Heck, I could even set it up to a cronjob to refresh them everyday. But perhaps that is overkill for today 😆. I am satisfied with how it current works.
</p>
<p>
Expect to see some updates on books, emacs, and Linux coming soon to a website near you!
</p>
</article>
</body>
</html>
|