This commit is contained in:
2026-07-09 10:17:57 +02:00
parent d9927618f5
commit dfa7ef98ef
15 changed files with 411 additions and 36 deletions
+36
View File
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Blog — Marcus Allison</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header class="site-header">
<div class="container">
<h1>Blog</h1>
<p class="tag">Updates from my self-hosting and systems administration journey.</p>
<p class="header-links"><a href="index.html">Home</a><a href="https://git.organic-server.org">Gitea</a></p>
</div>
</header>
<main class="container">
<section id="blog-intro">
<h2>Latest Posts</h2>
<p>Each entry is a plain text file in the <code>blog/</code> directory. The first line is the date/time, the second line is the title, and the rest is the post content.</p>
<p>To attach a file, put it in <code>blog/files/</code> and reference it using <code>[[file: filename.ext]]</code> or <code>[[attachment: filename.ext]]</code> in the body.</p>
</section>
<section id="blog-list">
<div class="blog-feed">Loading blog posts…</div>
</section>
</main>
<footer class="site-footer">
<div class="container">© Marcus Allison - Self-hosting & Systems Administration</div>
</footer>
<script src="js/blog.js"></script>
</body>
</html>