streams/include/system_unavailable.php
2013-02-25 17:09:40 -08:00

12 lines
No EOL
219 B
PHP

<?php /** @file */
function system_down() {
echo <<< EOT
<html>
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
EOT;
}