friendica/include/system_unavailable.php

12 lines
206 B
PHP
Raw Normal View History

<?php
function system_down() {
echo <<< EOT
2010-07-02 01:48:07 +02:00
<html>
<head><title>System Unavailable</title></head>
<body>
Apologies but this site is unavailable at the moment. Please try again later.
</body>
</html>
EOT;
}