Guest User

Untitled

a guest
Jun 16th, 2019
76
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. get_template_part('index', 'banner');
  3. ?>
  4. <!-- Blog Full Width Section -->
  5. <section class="blog-section">
  6. <div class="container">
  7. <div class="row">
  8. <!--Blog Area-->
  9. <div class= "col-md-9" >
  10. <div class="site-content">
  11. <?php
  12. if ( have_posts() ) :
  13. // Start the Loop.
  14. while ( have_posts() ) : the_post();
  15. get_template_part( 'content','');
  16. endwhile;
  17. endif;?>
  18. <div class="paginations">
  19. <?php
  20. // Previous/next page navigation.
  21. the_posts_pagination( array(
  22. 'prev_text' => '<i class="fa fa-angle-double-left"></i>',
  23. 'next_text' => '<i class="fa fa-angle-double-right"></i>',
  24. ) );
  25. ?>
  26. </div>
  27. </div>
  28. </div>
  29. <!--/Blog Area-->
  30. <div class="col-md-4 sidebar-section-right">
  31. <?php get_sidebar(); ?>
  32. </div>
  33. </div>
  34. </div>
  35. </section>
  36. <?php get_footer(); ?>
  37. <!-- /Blog Full Width Section -->
Add Comment
Please, Sign In to add comment