-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.php
executable file
·61 lines (47 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
* 404 template used by Eclipse.
*
* Authors: Tyler Cunningham, Trent Lapinski
* Copyright: © 2012
* {@link http://cyberchimps.com/ CyberChimps LLC}
*
* Released under the terms of the GNU General Public License.
* You should have received a copy of the GNU General Public License,
* along with this software. In the main directory, see: /licensing/
* If not, see: {@link http://www.gnu.org/licenses/}.
*
* @package Eclipse.
* @since 1.0
*/
global $options, $themeslug, $post, $sidebar, $content_grid; // call globals
/* Header call. */
response_sidebar_init();
get_header();
/* End header. */
?>
<div class="container">
<div class="row">
<!--Begin @response before content sidebar hook-->
<?php response_before_content_sidebar(); ?>
<!--End @response before content sidebar hook-->
<div id="content" class="<?php echo $content_grid; ?>">
<div class="content_padding">
<!-- Begin @response before_404 hook content-->
<?php response_before_404(); ?>
<!-- Begin @response before_404 hook content-->
<!-- Begin @response 404 hook content-->
<?php response_404(); ?>
<!-- Begin @response 404 hook content-->
<!-- Begin @response after_404 hook content-->
<?php response_after_404(); ?>
<!-- Begin @response after_404 hook content-->
</div><!--end content_padding-->
</div><!--end content_left-->
<!--Begin @response after content sidebar hook-->
<?php response_after_content_sidebar(); ?>
<!--End @response after content sidebar hook-->
</div><!--end content_wrap-->
</div><!--end row-->
</div><!--end container-->
<?php get_footer(); ?>