-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
30 lines (24 loc) · 784 Bytes
/
404.php
File metadata and controls
30 lines (24 loc) · 784 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
<?php include 'header.php' ?>
<body>
<?php include 'navbar.php' ?>
<div class="body-content">
<div class="container">
<div class="row">
<section class="error span8 offset1">
<h1>I'm sorry, the page you're looking for does not exist!</h1>
<h3>Find your way back...</h3>
<nav>
<ul>
<li><a href="" class="btn btn-green btn-large">Find books to buy</a></li>
<li><a href="" class="btn btn-green btn-large">Find books to sell</a></li>
<li><a href="" class="btn btn-tan btn-large">View my profile</a></li>
</ul>
</nav>
</section>
</div>
</div>
</div>
<?php include 'footer.php' ?>
<?php include 'javascript.php' ?>
</body>
</html>