e7d1e80302
Use in twentyten for loop.php including. See #9015. git-svn-id: https://develop.svn.wordpress.org/trunk@13146 602fd350-edb4-49c9-b593-d223f7449a82
21 lines
541 B
PHP
21 lines
541 B
PHP
<?php get_header(); ?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
|
|
<?php if ( have_posts() ) :
|
|
get_generic_template( 'loop', 'index' );
|
|
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(); ?>
|