2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The template for displaying 404 pages (Not Found)
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
get_header(); ?>
|
|
|
|
|
2013-11-15 20:01:09 +01:00
|
|
|
|
2013-07-29 00:55:10 +02:00
|
|
|
<div id="primary" class="content-area">
|
|
|
|
<div id="content" class="site-content" role="main">
|
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<header class="page-header">
|
2013-12-05 18:55:10 +01:00
|
|
|
<h1 class="page-title"><?php _e( 'Not Found', 'twentyfourteen' ); ?></h1>
|
2013-08-15 05:13:29 +02:00
|
|
|
</header>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<div class="page-content">
|
|
|
|
<p><?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'twentyfourteen' ); ?></p>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php get_search_form(); ?>
|
|
|
|
</div><!-- .page-content -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #primary -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php
|
2013-11-15 20:01:09 +01:00
|
|
|
get_sidebar( 'content' );
|
2013-08-15 05:13:29 +02:00
|
|
|
get_sidebar();
|
|
|
|
get_footer();
|