25 lines
866 B
PHP
25 lines
866 B
PHP
|
|
<?php get_header(); ?>
|
||
|
|
<div id="page">
|
||
|
|
<?php if ($mts_options['mts_layout'] == 'cslayout' || $mts_options['mts_layout'] == 'sclayout') { ?>
|
||
|
|
<?php } else { ?>
|
||
|
|
<aside id="sidebar-left" class="left-menu">
|
||
|
|
<?php if ( ! dynamic_sidebar( 'Left Sidebar' ) ) : ?>
|
||
|
|
<?php endif ?>
|
||
|
|
</aside>
|
||
|
|
<?php } ?>
|
||
|
|
<article class="article">
|
||
|
|
<div id="content_box" class="single_post">
|
||
|
|
<header>
|
||
|
|
<div class="title">
|
||
|
|
<h1><?php _e('Error 404 Not Found', 'mythemeshop'); ?></h1>
|
||
|
|
</div>
|
||
|
|
</header>
|
||
|
|
<div class="post-content">
|
||
|
|
<p><?php _e('Oops! We couldn\'t find this Page.', 'mythemeshop'); ?><br/>
|
||
|
|
<?php _e('Please check your URL or use the search form below.', 'mythemeshop'); ?></p>
|
||
|
|
<?php get_search_form();?>
|
||
|
|
</div><!--.post-content--><!--#error404 .post-->
|
||
|
|
</div><!--#content-->
|
||
|
|
</article>
|
||
|
|
<?php get_sidebar(); ?>
|
||
|
|
<?php get_footer(); ?>
|