-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.php
More file actions
49 lines (45 loc) · 1.5 KB
/
message.php
File metadata and controls
49 lines (45 loc) · 1.5 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
<!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 http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>RU Crazy?</title>
<!-- Stylesheets
============================================= -->
<link type="text/css" rel="stylesheet" href="includes/css/bootstrap.css" />
<link type="text/css" rel="stylesheet" href="includes/css/override.css" />
<!-- Javascripts
============================================= -->
<script type="text/javascript" src="includes/js/jquery.min.js"></script>
<script type="text/javascript" src="includes/js/bootstrap-2.0.2.js"></script>
<script type="text/javascript" src="includes/js/jquery.blueberry.js"></script>
<!-- Functions
============================================= -->
<script>
$(window).load(function() {
$('.blueberry').blueberry();
});
</script>
</head>
<body>
<br/>
<div id="wrapper">
<?php include"includes/status.php" ?>
<div id="header">RU Crazy</div>
<br/>
<?php include"includes/top_nav.php"?>
<div id="doc">
<div id="content">
<div align="center">
<?php
if (!isset($_GET['message'])) {
echo "The link is currently under construction, please try back another time! =]";
} else {
print $_GET['message'];
}
?>
</div>
</div></div>
<?php include"includes/footer.php"?>
</div>
</body>
</html>