-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
30 lines (23 loc) · 663 Bytes
/
Copy path404.php
File metadata and controls
30 lines (23 loc) · 663 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 get_header(); ?>
<div class="row">
<div class="col-md-8">
<br/><br/>
<div class="jumbotron">
<div class="row">
<div class="col-md-4">
<h1><i class="fa fa-frown-o fa-3x"></i></h1>
</div>
<div class="col-md-8">
<br/>
<h2> Page not Found!</h2>
<p class="text-muted">It looks like nothing was found at this location. Maybe try a search?</p>
<?php get_search_form(); ?>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>