Advertisement
UUMom

Main blog template (index.php)

Jul 1st, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <?php get_template_part('./template/header');?>
  2. <body class="inner-page">
  3. <div id="outer-wrapper">
  4. <?php get_template_part('./template/navigation');?>
  5. <div id="wrapper">
  6. <!--header-->
  7. <div id="header">
  8. <!--blog title -->
  9. <div class="blog-title">
  10. <img src="<?php bloginfo('template_directory');?>/images/new/kowabunga_masthead.jpg" alt="" />
  11. </div>
  12. <!--/blog title -->
  13. </div>
  14. <!--/header-->
  15. <!--content-->
  16. <div id="content">
  17. <!--sidebar left -->
  18. <div id="col-1">
  19.  
  20. <?php get_template_part('./template/archives');?>
  21.  
  22. </div>
  23. <!--/sidebar left -->
  24. <!--page -->
  25. <div id="col-2">
  26. <h6><?php the_title();?></h6>
  27.  
  28. <?php
  29.  
  30. if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  31. <p><?php the_content('Read more...'); ?>
  32. <?php endwhile; else: ?>
  33. <?php _e('Sorry, no posts matched your criteria.'); ?>
  34. <?php endif; ?>
  35.  
  36.  
  37. </div>
  38. <!--/page -->
  39. <?php get_template_part('./template/sidebar-right');?>
  40. <div class="clear"></div>
  41. </div>
  42. <!--/content-->
  43. <?php get_template_part('./template/footer');?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement