1
0
Fork 0
app.sixfold.org/www/errors/503.php
2024-11-14 04:30:20 -05:00

18 lines
604 B
PHP

<?php
$description = "We're doing some maintenance right now; we'll be back shortly.";
$title = "Under Maintenance";
$NAVIGATION->header = [];
include "partials/head.php";
?>
<body>
<?php include "partials/header.php"; ?>
<main id="main" class="flow">
<header>
<h1><?= $title ?></h1>
</header>
<p>We're doing some maintenance right now; we'll be back shortly. In the meantime, feel free to <a href="https://www.sixfold.org/issues">read our previous issues</a>.</p>
</main>
<?php include "partials/footer.php"; ?>