Advertisement
Tagcloud

Page

Jan 25th, 2013
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <!-- START: MAIN CONTENT -->
  3. <div id="main-content" class="clearfix">
  4. <div id="lcol-wrapper">
  5. <!-- START: LEFT COLUMN -->
  6. <div id="leftcol">
  7. <?php get_template_part('includes/breadcrumb' ); ?>
  8.  
  9. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  10. <!-- START: POST CONTENT -->
  11. <div id="post-content" class="clearfix">
  12. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13. <div class="inner">
  14. <h1 class="title"><a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
  15. <?php the_content(); ?>
  16. <?php warrior_admin_update_link(); ?>
  17. </div>
  18. </div>
  19. </div>
  20. <!-- END: POST CONTENT -->
  21. <?php comments_template( '', true ); ?>
  22. <?php endwhile; endif; ?>
  23. </div>
  24. <!-- END: LEFT COLUMN -->
  25. </div>
  26. <?php get_sidebar(); ?>
  27. </div>
  28. <!-- END: MAIN CONTENT -->
  29. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement