Advertisement
Guest User

Untitled

a guest
Jul 19th, 2013
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div class="column-one">
  4. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5. <article>
  6.  
  7. <?php if(has_post_thumbnail()): the_post_thumbnail('thumbnail', array('class'=>'blog-thumb')); ?><?php endif; ?>
  8.  
  9. <div class="blog-entry">
  10.  
  11. <span class="categories"><?php the_category(', '); ?></span>
  12.  
  13. <h2 class="post-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
  14.  
  15. </div>
  16. <span class="clearfix"></span>
  17.  
  18. <?php the_content(); ?>
  19.  
  20. </article>
  21. <?php endwhile; ?>
  22. <?php else: ?>
  23.  
  24. <article>
  25.  
  26. <div class="blog-entry">
  27.  
  28. <h2 class="post-title"><?php _e("No Posts Yet", "site5framework"); ?></h2>
  29.  
  30. <div id="post-content">
  31. <p><?php _e("Sorry, What you were looking for is not here.", "site5framework"); ?></p>
  32. </div>
  33. </div>
  34.  
  35. </article>
  36.  
  37. <?php endif; ?>
  38.  
  39.  
  40. </div>
  41.  
  42. <div class="column-two">
  43. <?php //get_sidebar('primary'); ?>
  44. </div><!-- end #column-two -->
  45.  
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement