Advertisement
Guest User

INDEX

a guest
May 8th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php get_header(); ?>     
  2.  
  3.     <div id="content" class="clearfix">
  4.        
  5.         <?php // the loop ?>
  6.         <?php if (have_posts()) : ?>
  7.        
  8.             <?php while (have_posts()) : the_post(); ?>
  9.    
  10.                 <?php get_template_part( 'includes/loop' , 'index'); ?>
  11.    
  12.             <?php endwhile; ?>
  13.                            
  14.             <?php get_template_part( 'includes/pagination'); ?>
  15.        
  16.         <?php else : ?>
  17.    
  18.             <p><?php _e( 'Sorry, nothing found.', 'themify' ); ?></p>
  19.    
  20.         <?php endif; ?>        
  21.    
  22.     </div>
  23.     <!-- /#content -->
  24.  
  25. <?php get_sidebar(); ?>
  26.  
  27. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement