Advertisement
Guest User

index.php

a guest
Jan 4th, 2016
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.81 KB | None | 0 0
  1. <div class="row" id="poll-content-wrapper">
  2.         <main id="content" class="col-md-8 col-lg-9 content-area" role="main">
  3.  
  4.            
  5.         <?php if ( have_posts() ) : ?>
  6.            
  7.             <div id="masonry" class="row">
  8.             <?php while ( have_posts() ) : the_post(); ?>
  9.                
  10.                <div class="col-xs-12 col-sm-6 col-lg-4 masonry-item">
  11.                     <?php get_template_part( 'content', get_post_format() ); ?>
  12.                 </div>
  13.  
  14.  
  15. <?php endwhile; ?>
  16.             <!-- #masonry --></div>
  17.  
  18.             <?php nuthemes_content_nav( 'nav-below' ); ?>
  19.  
  20.         <?php else : ?>
  21.  
  22.             <?php get_template_part( 'no-results', 'index' ); ?>
  23.  
  24.         <?php endif; ?>
  25.  
  26.         <!-- #content --></main>
  27.  
  28.         <?php //get_sidebar(); ?>
  29.     <!-- .row --></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement