18 lines
604 B
PHP
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"; ?>
|