-
Notifications
You must be signed in to change notification settings - Fork 7
/
404.php
executable file
·44 lines (31 loc) · 913 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
44
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package WordPress
* @subpackage K2
* @since K2 unknown
*/
get_header(); ?>
<div class="wrapper">
<?php if ( is_active_sidebar('widgets-top') ): ?>
<div id="widgets-top" class="widgets">
<?php dynamic_sidebar('widgets-top'); ?>
</div>
<?php endif; ?>
<div class="primary">
<?php /* K2 Hook */ do_action('template_primary_begin'); ?>
<div id="content" class="content">
<?php locate_template( array('blocks/k2-404.php'), true ); ?>
</div><!-- .content .hfeed -->
<?php /* K2 Hook */ do_action('template_primary_end'); ?>
</div><!-- .primary -->
<?php get_sidebar(); ?>
<?php if ( is_active_sidebar('widgets-bottom') ): ?>
<div id="widgets-bottom" class="widgets">
<?php dynamic_sidebar('widgets-bottom'); ?>
</div>
<?php endif; ?>
</div> <!-- .wrapper -->
<?php get_footer(); ?>
<!-- I♥Rikke -->