Guest User

Untitled

a guest
Apr 18th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <?php
  2. get_header(); ?>
  3. <!-- Page Title Section -->
  4. <div class="page-title-section">
  5. <div class="overlay">
  6. <div class="container">
  7. <div class="row">
  8. <div class="col-md-6">
  9. <div class="page-title"><h1><?php echo single_cat_title("", false); ?></h1></div>
  10. </div>
  11. <div class="col-md-6">
  12. <ul class="page-breadcrumb">
  13. <?php if (function_exists('qt_custom_breadcrumbs')) qt_custom_breadcrumbs();?>
  14. </ul>
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19. </div>
  20. <div class="page-builder">
  21. <div class="container">
  22. <div class="row">
  23. <!-- Blog Area -->
  24. <div class="<?php appointment_post_layout_class(); ?>" >
  25. <?php
  26. if ( have_posts() ) :
  27. // Start the Loop.
  28. while ( have_posts() ) : the_post();
  29. get_template_part( 'content','');
  30. endwhile;
  31. endif;
  32. // Previous/next page navigation.
  33. the_posts_pagination( array(
  34. 'prev_text' => '<i class="fa fa-angle-double-left"></i>',
  35. 'next_text' => '<i class="fa fa-angle-double-right"></i>',
  36. ) );
  37. ?>
  38. <!-- /Blog Pagination -->
  39. </div>
  40. <!--Sidebar Area-->
  41. <div class="col-md-4">
  42. <?php get_sidebar(); ?>
  43. </div>
  44. <!--Sidebar Area-->
  45. </div>
  46. </div>
  47. </div>
  48. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment