Advertisement
Guest User

Untitled

a guest
Nov 4th, 2011
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <div id="content" role="main">
  2.  
  3. <?php if ( have_posts() ) : ?>
  4.  
  5. <?php twentyeleven_content_nav( 'nav-above' ); ?>
  6.  
  7. <?php /* Start the Loop */ ?>
  8. <?php while ( have_posts() ) : the_post(); ?>
  9.  
  10. <?php get_template_part( 'content', get_post_format() ); ?>
  11.  
  12. <?php endwhile; ?>
  13.  
  14. <?php twentyeleven_content_nav( 'nav-below' ); ?>
  15.  
  16. <?php else : ?>
  17.  
  18. <article id="post-0" class="post no-results not-found">
  19. <header class="entry-header">
  20. <h1 class="entry-title"><?php _e( 'Nothing Found', 'twentyeleven' ); ?></h1>
  21. </header><!-- .entry-header -->
  22.  
  23. <div class="entry-content">
  24. <p><?php _e( 'Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.', 'twentyeleven' ); ?></p>
  25. <?php get_search_form(); ?>
  26. </div><!-- .entry-content -->
  27. </article><!-- #post-0 -->
  28.  
  29. <?php endif; ?>
  30.  
  31. </div><!-- #content -->
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement