-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
31 lines (28 loc) · 802 Bytes
/
404.php
File metadata and controls
31 lines (28 loc) · 802 Bytes
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
<?php
require_once(dirname(__FILE__) . "/lib/functions_template.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Raymond Shi's Homepage</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
</head>
<body>
<!-- Bootstrap's js requires jquery. So jquery needs to included first -->
<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<div class="container">
<?php
navbar_template();
header_template();
?>
<br/>
<br/>
<div class="well col-lg-8 col-md-8">
<h3>OOOOOOOOOOOps......T^T......</h3>
<h3>I didn't write the paragraph you want to read.</h3>
<h3><a href="contact.php">Contact</a> me for your idea. I'm happy to listen from you!</h3>
</div>
</div>
</body>
</html>