-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
45 lines (41 loc) · 1.61 KB
/
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
44
45
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage ChurchThemes
*
===================================================================================================
WARNING! DO NOT EDIT THIS FILE OR ANY TEMPLATE FILES IN THIS THEME!
To make it easy to update your theme, you should not edit this file. Instead, you should create a
Child Theme first. This will ensure your template changes are not lost when updating the theme.
You can learn more about creating Child Themes here: http://codex.wordpress.org/Child_Themes
You have been warned! :)
===================================================================================================
*/
get_header(); ?>
<div id="ribbon" class="page">
<div class="container_12 grid-container content">
<div class="ribbon-wrapper">
<div class="grid_7 grid-60 alpha">
<h1><?php _e( 'Page Not Found', 'churchthemes' ); ?></h1>
</div>
<div class="grid_5 grid-40 omega">
<span class="tagline"><p><?php _e( 'Error 404', 'churchthemes' ); ?></p></span>
</div>
</div>
</div>
</div>
<div id="wrapper3" class="container_12 grid-container">
<div id="content" class="grid_12 grid-100 alpha">
<p><?php _e( 'Apologies, but the page you requested could not be found. Perhaps searching will help.', 'churchthemes' ); ?></p>
<?php get_search_form(); ?>
<p> </p>
<p> </p>
</div>
</div>
<script type="text/javascript">
// focus on search field after it has loaded
document.getElementById('s') && document.getElementById('s').focus();
</script>
<?php get_footer(); ?>