Advertisement
Guest User

Untitled

a guest
Sep 18th, 2020
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2.  
  3. get_header();
  4. get_template_part('index','banner'); ?>
  5. <!-- Blog Section with Sidebar -->
  6. <div class="page-builder">
  7. <div class="container">
  8. <div class="row">
  9. <!-- Blog Area -->
  10. <div class="col-md-12">
  11. <?php if( $post->post_content != "" )
  12. { ?>
  13. <div class="blog-lg-area-left">
  14. <?php if( have_posts()) : the_post(); ?>
  15. <?php the_content(); ?>
  16. <?php endif; ?>
  17. </div>
  18. <?php } ?>
  19. <?php comments_template( '', true ); // show comments ?>
  20. </div>
  21. <!-- /Blog Area -->
  22. </div>
  23. </div>
  24. </div>
  25. <!-- /Blog Section with Sidebar -->
  26. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement