darrenbachan

archives-upcoming-games.php

Jun 12th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.92 KB | None | 0 0
  1. <?php get_header(); ?>
  2.    
  3.     <?php get_template_part('content', 'featured-banner'); ?>
  4.  
  5.     <!-- <div class="blog-post-featured-banner">
  6.         <div class="texture bottom texture-light-grey-bottom"></div>
  7.         <div class="featured-banner" style="background: url() no-repeat center center fixed; background-size: cover;"></div>
  8.     </div> -->
  9.  
  10.     <div class="container">
  11.         <section>
  12.             <div class="row">
  13.                 <div class="col-sm-12 col-md-12">
  14.  
  15.                     <?php if(have_posts()) : ?>
  16.  
  17.                         <?php while(have_posts()) : the_post(); ?>
  18.                             <article>
  19.                                 <div class="row">
  20.                                     <?php get_template_part('content', 'upcoming-games'); ?>
  21.                                 </div>
  22.                             </article>
  23.                         <?php endwhile; ?>
  24.                        
  25.                     <?php else : ?>
  26.                         <p><?php __('No Page Found'); ?></p>
  27.                     <?php endif; ?>
  28.  
  29.                 </div><!-- end column -->
  30.             </div><!--end row-->
  31.         </section>
  32.     </div><!--end container-->
  33.    
  34. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment