streams/include/system_unavailable.php

20 lines
320 B
PHP
Raw Permalink Normal View History

2021-03-01 23:33:07 +00:00
<?php
require_once("include/network.php");
2024-01-02 04:34:19 +00:00
function system_down(): void
{
http_status(503, 'Service Unavailable', false);
echo <<< EOT
2022-08-14 10:25:56 +00:00
<html lang="en">
2010-07-01 23:48:07 +00:00
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
2021-03-01 23:33:07 +00:00
EOT;
2024-01-02 04:34:19 +00:00
2023-12-17 20:03:15 +00:00
}