-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
43 lines (32 loc) · 1.03 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
<?php
/**
* 404 Template
*
* This template is displayed when the page being requested by the viewer cannot be found
* or doesn't exist. From here, we'll try to assist the user and keep them browsing the website.
* @link http://codex.wordpress.org/Pages
*
* @subpackage Template
*/
get_header();
?>
<!-- #content Starts -->
<?php sf_content_before(); ?>
<div id="content" class="col-full">
<div id="main-sidebar-container">
<!-- #main Starts -->
<?php sf_main_before(); ?>
<section id="main" class="col-left">
<?php
sf_loop_before();
sf_get_template_part( 'templates/contents/content', '404' ); // Get the 404 content template file, contextually.
sf_loop_after();
?>
</section><!-- /#main -->
<?php sf_main_after(); ?>
<?php get_sidebar(); ?>
</div><!-- /#main-sidebar-container -->
<?php get_sidebar( 'alt' ); ?>
</div><!-- /#content -->
<?php sf_content_after(); ?>
<?php get_footer(); ?>