33 lines
928 B
PHP
33 lines
928 B
PHP
<?php
|
|
/**
|
|
* The template for displaying 404 pages (Not Found).
|
|
*
|
|
* @package pluto
|
|
*/
|
|
get_header(); ?>
|
|
|
|
<div class="main-content-w">
|
|
<div class="main-content-m">
|
|
<?php os_the_primary_sidebar('left'); ?>
|
|
<div class="main-content-i">
|
|
<div class="content page side-padded-content">
|
|
<article class="pluto-page-box">
|
|
<div class="post-body">
|
|
<h1 class="page-title"><?php _e('Page not Found', 'pluto') ?></h1>
|
|
<div class="post-content">
|
|
<?php _e('The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'pluto'); ?>
|
|
<div class="search-404">
|
|
<?php get_search_form(); ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
<?php os_the_primary_sidebar('right'); ?>
|
|
</div>
|
|
<?php os_footer(); ?>
|
|
</div>
|
|
<?php
|
|
get_footer();
|
|
?>
|