Advertisement
Guest User

My index page

a guest
Aug 31st, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?php
  2.  
  3. /* Front page (index / blog page) template */
  4.  
  5. get_header(); ?>
  6.  
  7. <section id="content-container">
  8. <div id="content" role="main">
  9.  
  10. <?php /* Start the Loop */ ?>
  11. <?php while ( have_posts() ) : the_post(); ?>
  12.  
  13. <?php
  14. get_template_part( 'content', get_post_format() );
  15. ?>
  16.  
  17. <?php endwhile; ?>
  18.  
  19. </div><!-- #regular-content -->
  20. <div class="paginationBox group">
  21. <?php kriesi_pagination($pages = '', $range = 3); ?>
  22. </div>
  23. </section><!-- #regular-index -->
  24.  
  25.  
  26. <article id="post-0" class="post no-results not-found">
  27. <header class="entry-header">
  28. <h1 class="entry-title"><?php _e( 'Nothing Found', 'anaximander' ); ?></h1>
  29. </header><!-- .entry-header -->
  30.  
  31. <div class="entry-content">
  32. <p><?php _e( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'anaximander' ); ?></p>
  33. <?php get_search_form(); ?>
  34. </div><!-- .entry-content -->
  35. </article><!-- #post-0 -->
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45. <?php get_sidebar(); ?>
  46. </div><!-- #content -->
  47. </section><!-- #content-container -->
  48.  
  49.  
  50. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement