Files
0xa0.dev/index.php
T
2026-07-21 17:06:32 +02:00

14 lines
411 B
PHP

<?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'; ?>