mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-27 02:31:40 +01:00
38a77b72cb
git-svn-id: http://svn.automattic.com/wordpress/trunk@13141 1a063a9b-81f0-0310-95a4-ce76da25c4cd
21 lines
520 B
PHP
21 lines
520 B
PHP
<?php get_header(); ?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
|
|
<?php if ( have_posts() ) :
|
|
include 'loop.php';
|
|
else : ?>
|
|
<h2><?php _e( 'Not Found', 'twentyten' ); ?></h2>
|
|
<div class="entry-content">
|
|
<p><?php _e( 'Apologies, but we were unable to find what you were looking for. Perhaps searching will help.', 'twentyten' ); ?></p>
|
|
<?php get_search_form(); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|