-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.php
More file actions
executable file
·75 lines (59 loc) · 1.99 KB
/
Copy path404.php
File metadata and controls
executable file
·75 lines (59 loc) · 1.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php require_once('include/header.php'); ?>
<!-- Page Title
============================================= -->
<section id="page-title">
<div class="container clearfix">
<h1>Page Not Found</h1>
<ol class="breadcrumb">
<li><a href="index.php">Home</a></li>
<li class="active">404</li>
</ol>
</div>
</section><!-- #page-title end -->
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="col_half nobottommargin">
<div class="error404 center">404</div>
</div>
<div class="col_half nobottommargin col_last">
<div class="heading-block nobottomborder">
<h4>Ooopps.! The Page you were looking for, couldn't be found.</h4>
<span>Try searching for the best match or browse the links below:</span>
</div>
<form action="#" method="get" role="form" class="nobottommargin">
<div class="input-group input-group-lg">
<input type="text" class="form-control" placeholder="Search for Pages...">
<span class="input-group-btn">
<button class="btn btn-danger" type="button">Search</button>
</span>
</div>
</form>
<div class="col_one_third widget_links topmargin nobottommargin">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">FAQs</a></li>
</ul>
</div>
<div class="col_one_third widget_links topmargin nobottommargin">
<ul>
<li><a href="#">Shop</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
<div class="col_one_third widget_links topmargin nobottommargin col_last">
<ul>
<li><a href="#">Support</a></li>
<li><a href="#">Forums</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</section><!-- #content end -->
<?php require_once ('include/footer.html'); ?>