filipeltsilva

page-blog.php

Oct 16th, 2014
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <?php
  2. /*
  3. Template name: Blog
  4. Description: A page template for the blog posts
  5.  */
  6. ?>
  7.  
  8. <?php get_header(); ?>
  9.  
  10.     <div class="container">
  11.         <div class="blog-posts">
  12.             <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  13.                 <h1><?php the_title(); ?></h1>
  14.                 <?php the_content(); ?>
  15.                 <br />
  16.             <?php endwhile; ?>
  17.             <!-- post navigation -->
  18.             <?php else: ?>
  19.             <!-- no posts found -->
  20.             <?php endif; ?>
  21.         </div>
  22.  
  23.         <div class="sidebar alignright">
  24.             <h1>HERE COMES THE SIDEBAR</h1>
  25.         </div>
  26.     </div>
  27.  
  28. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment