Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Template name: Blog
- Description: A page template for the blog posts
- */
- ?>
- <?php get_header(); ?>
- <div class="container">
- <div class="blog-posts">
- <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
- <h1><?php the_title(); ?></h1>
- <?php the_content(); ?>
- <br />
- <?php endwhile; ?>
- <!-- post navigation -->
- <?php else: ?>
- <!-- no posts found -->
- <?php endif; ?>
- </div>
- <div class="sidebar alignright">
- <h1>HERE COMES THE SIDEBAR</h1>
- </div>
- </div>
- <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment