Guest User

Untitled

a guest
Nov 4th, 2016
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <?php get_header();
  2. get_template_part('index', 'banner');
  3. if(!is_home()) { echo '</div>'; }
  4. ?>
  5. <!-- Blog & Sidebar Section -->
  6. <section class="site-content">
  7. <div class="container">
  8. <div class="row blog_sidebar_section">
  9. <div class="<?php corpbiz_post_layout_class(); ?>" >
  10. <?php the_post(); ?>
  11. <div class="blog_detail_section">
  12. <?php if(has_post_thumbnail()): ?>
  13. <?php $defalt_arg =array('class' => "img-responsive"); ?>
  14. <div class="blog_post_img">
  15. <?php the_post_thumbnail('', $defalt_arg); ?>
  16. </div>
  17. <?php endif; ?>
  18. <div class="blog_post_content">
  19. <?php the_content(); ?>
  20. </div>
  21. </div>
  22. <?php comments_template('',true); ?>
  23. </div>
  24. <?php get_sidebar(); ?>
  25. </div>
  26. </div>
  27. </section>
  28. <!--Blog-->
  29. <?php
  30. if($current_options['service_section_footer_enable'] == false) {
  31. get_template_part('index', 'call-out-area');
  32. }?>
  33. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment