-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmaintenance.php
More file actions
62 lines (55 loc) · 2.27 KB
/
maintenance.php
File metadata and controls
62 lines (55 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php http_response_code(503); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>PoxBrain</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/jumbotron.css" rel="stylesheet">
<link rel="stylesheet" href="css/main.css" type="text/css" />
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="/">PoxBrain</a>
</div>
</nav>
<div id="main-info" class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-3">
</div>
<div class="col-md-6">
<h2>Down for maintenance</h2>
<p>
PoxBrain is currently down for maintenance. We're probably either pushing out a new update or reading the latest data from the PoxNora API.
This should really only take about 10 minutes or so. We expect to be back up soon.
</p>
<p><a class="btn btn-default" href="https://www.google.com.sg/search?q=cats&source=lnms&tbm=isch&sa=X&ved=0ahUKEwjN9IT1x-7SAhVMQo8KHdtCDF0Q_AUICCgB&biw=1366&bih=662" role="button">Take a break</a></p>
</div>
<div class="col-md-3">
</div>
</div>
<hr>
<footer>
<p>© 2017</p>
</footer>
</div>
<script src="/js/jquery-3.1.1.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/main.js"></script>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-58900978-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>