-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
43 lines (28 loc) · 954 Bytes
/
404.php
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
<?php get_header(); ?>
<!-- BEGIN #content -->
<div id="content">
<!-- BEGIN .row -->
<div class="row">
<!-- BEGIN .eleven columns -->
<div class="eleven columns">
<div class="page content holder">
<!-- BEGIN .article -->
<div class="article">
<h1 class="headline"><?php _e("Not Found, Error 404", 'organicthemes'); ?></h1>
<p><?php _e("The page you are looking for no longer exists or cannot be found.", 'organicthemes'); ?></p>
<!-- END .article -->
</div>
<!-- END .post -->
</div>
<!-- END .eleven columns -->
</div>
<!-- BEGIN .five columns -->
<div class="five columns">
<?php get_sidebar(); ?>
<!-- END .five columns -->
</div>
<!-- END .row -->
</div>
<!-- END #content -->
</div>
<?php get_footer(); ?>