| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php get_header(); ?>
- <div id="content">
- <div id="inner-content" class="wrap cf">
- <div id="main" class="m-all t-2of3 d-5of7 cf" role="main">
- <article id="post-not-found" class="hentry cf">
- <header class="article-header">
- <h1><?php _e( 'Epic 404 - Article Not Found', 'bonestheme' ); ?></h1>
- </header> <?php // end article header ?>
- <section class="entry-content">
- <p><?php _e( 'The article you were looking for was not found, but maybe try looking again!', 'bonestheme' ); ?></p>
- </section> <?php // end article section ?>
- <section class="search">
- <p><?php get_search_form(); ?></p>
- </section> <?php // end search section ?>
- <footer class="article-footer">
- <p><?php _e( 'This is the 404.php template.', 'bonestheme' ); ?></p>
- </footer> <?php // end article footer ?>
- </article> <?php // end article ?>
- </div> <?php // end #main ?>
- </div> <?php // end #inner-content ?>
- </div> <?php // end #content ?>
- <?php get_footer(); ?>
|