1
0
Fork 0
mirror of https://github.com/friendica/friendica synced 2025-01-13 06:44:43 +00:00
friendica-github/include/system_unavailable.php

12 lines
No EOL
206 B
PHP

<?php
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;
}