engelsystem/resources/views/layouts/maintenance.html

74 lines
1.6 KiB
HTML
Raw Normal View History

2015-08-09 17:46:57 +02:00
<!DOCTYPE html>
2023-02-09 00:29:15 +01:00
<html lang="en">
2015-08-09 17:46:57 +02:00
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
2023-02-09 00:29:15 +01:00
<title>%APP_NAME% - Maintenance</title>
2015-08-09 17:46:57 +02:00
</head>
2023-02-09 00:29:15 +01:00
<style>
body {
font-family: sans-serif;
color: #222;
background-color: #eee;
}
ul {
list-style: none;
padding-left: .7em;
}
ul li::before {
content: "\2026\20";
}
.container {
margin: 1em;
}
@media screen and (min-width: 1024px) {
.container {
display: grid;
grid-template-columns: 1fr 1fr;
}
}
</style>
2015-08-09 17:46:57 +02:00
<body>
2023-02-09 00:29:15 +01:00
<div class="container">
<div>
<h1>
The <strong>%APP_NAME%</strong> is in maintenance mode
2021-09-11 10:46:21 +02:00
</h1>
2023-02-09 00:29:15 +01:00
<p>This may be due to</p>
<ul>
<li>Archangels closing the gates of heaven.</li>
<li>Someone tried to do a simple maintenance task which did not go as planned.</li>
<li>DHCP decided to give me another ip address.</li>
<li>Somebody's stolen the power chord and now the battery is empty.</li>
<li>It might be a good time to take a nap.</li>
</ul>
</div>
<div>
<iframe width="480" height="320"
src="https://www.youtube-nocookie.com/embed/0aV_vHcunSQ"
allow="autoplay; encrypted-media" allowfullscreen>
</iframe>
2015-08-09 17:46:57 +02:00
</div>
2023-02-09 00:29:15 +01:00
<div>
<a href="https://github.com/engelsystem/engelsystem/issues">Bugs / Features</a>
· <a href="https://github.com/engelsystem/engelsystem/">Development Platform</a>
2015-08-09 17:46:57 +02:00
</div>
2017-01-02 15:43:36 +01:00
</div>
2023-02-09 00:29:15 +01:00
2015-08-09 17:46:57 +02:00
</body>
</html>