first commit

This commit is contained in:
2026-07-21 17:06:32 +02:00
commit 20f9aca26b
9 changed files with 239 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php require __DIR__ . '/inc/header.php'; ?>
<h1>hey, I'm 0x</h1>
<p>welcome to my corner of the web. no framework, no build step — just PHP printing HTML.</p>
<section class="status-widget">
<h2>status</h2>
<div id="status" hx-get="/status.php" hx-trigger="every 5s" hx-swap="innerHTML">
<?php include __DIR__ . '/status.php'; ?>
</div>
</section>
<?php require __DIR__ . '/inc/footer.php'; ?>