-
Notifications
You must be signed in to change notification settings - Fork 1
/
online
48 lines (42 loc) · 1.29 KB
/
online
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
<? $site_url = "http://campusbullet.net";
if ( ! file_exists('offline'))
header("Location: $site_url");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="en-us" http-equiv="Content-Language" />
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>The Campus Bullet | Service Unavailable</title>
<style type="text/css">
body {
background-color: #003C71;
color: #FFFFFF;
text-align: center;
font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
font-size: large;
}
.style1 {
font-size: 40px;
}
.info {
background-color: white;
color: #000000;
padding:10px;
margin: 20px 50px 50px 50px;
}
</style>
</head>
<body>
<h1 class="style1">Hi from The Campus Bullet!</h1>
<div class="info">
<p>You caught us when we were doing some site upgrades.</p>
<p>We should be done in a few minutes, so check back then and
this notice should be gone.</p>
<p>If it's not, something bad probably happened and we're working hard to
get the site back online.</p>
<p>See you soon!</p>
<p><a href="<?=$site_url?>">Click here to try loading the site again.</a></p>
</div>
</body>
</html>