<?php
/**
 * @package WordPress
 * @subpackage coe
 */
if ( !defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

get_header();
?>

<div id="content-container" class="container_24">
    <div id="main-content" class="grid_24">
	<div class="main-content-padding">
<?php       coe_main_content_top( is_front_page() ); ?>

            <br />
            <h2 class="center warning"><div class="msg-box-icon pngfix"><?php esc_html_e('Oops..., I cannot find that page you are looking for, sorry... (Error 404)', 'coe'); ?></div></h2>

            <div class="grid_18 prefix_2 suffix_2">
            <h3><?php esc_html_e('Let me help you find it:', 'coe'); ?></h3>
                <ol>
                    <li>
                        <?php _e('<strong>Search</strong> for it:', 'coe'); ?>
                        <?php get_search_form(); ?>
                    </li>
                    <li>
                        <?php _e('<strong>If you typed in a URL...</strong> check the spelling and try reloading the page.', 'coe' ); ?>
                    </li>
                    <li>
                    <?php printf( __('<strong>Start over again</strong> with the %1$sHomepage%2$s.', 'coe'), '<a href="'.get_bloginfo('url').'">', '</a>' ); ?>

                    </li>
                </ol>
                <br />
            </div>

	    <div class="clear"></div>
            
<?php       coe_main_content_bottom(); ?>
	</div><!-- end main-content-padding -->
    </div><!-- end main-content -->
</div><!-- end content-container -->

<div class="clear"></div>

<?php

get_footer();


