31 lines
871 B
HTML
31 lines
871 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Blog_Software</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1 id="title">Nick's Blog</h1>
|
|
<h2 id="subtitle">Thought I'd write a little bit</h2>
|
|
|
|
<div id="posts">
|
|
<hr>
|
|
<div class="post">
|
|
<a href="/post/2"><h1>Diabetes Jokes</h1></a>
|
|
<h2>Jul 25, 2026</h2>
|
|
</div>
|
|
<hr>
|
|
<div class="post">
|
|
<a href="/post/1"><h1>We're Totally Doomed, So Here's The Plan</h1></a>
|
|
<h2>Jul 5, 2026</h2>
|
|
</div>
|
|
<hr>
|
|
<div class="post">
|
|
<a href="/post/0"><h1>Snippets are better than your Agentic slop</h1></a>
|
|
<h2>Jun 26, 2026</h2>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |