mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
75 lines
2.3 KiB
PHP
75 lines
2.3 KiB
PHP
{{--
|
|
Pony.fm - A community for pony fan music.
|
|
Copyright (C) 2015 Feld0
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
--}}
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Be right back.</title>
|
|
|
|
<link href="//fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
|
|
|
|
<style>
|
|
html, body {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 100%;
|
|
color: #292929;
|
|
display: table;
|
|
font-weight: 700;
|
|
font-family: 'Roboto', Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
text-align: center;
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.content {
|
|
text-align: center;
|
|
display: inline-block;
|
|
}
|
|
|
|
.title {
|
|
font-size: 50px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
p {
|
|
font-weight: 400;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.art {
|
|
width: 75%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="content">
|
|
<img class="art" src="//67.media.tumblr.com/a4f77fa596545e84b438fd637086ccc0/tumblr_o40hjpQLUd1uwvmjvo1_1280.png">
|
|
<div class="title">We're down for maintenance</div>
|
|
<p>Sorry! Pony.fm is not available right now. Please check <a href="https://status.poniverse.io/" target="_blank">status.poniverse.io</a> for details.</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|