14 lines
411 B
PHP
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'; ?>
|