Guest User

Untitled

a guest
Apr 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <div class="container">
  2. <div class="row">
  3. <div class="col-md-8 text-center col-md-offset-2 pv-20">
  4. <h1 class="title object-non-visible" data-animation-effect="fadeIn" data-effect-delay="100"><?php the_title(); ?></h1>
  5. <div class="separator object-non-visible mt-10" data-animation-effect="fadeIn" data-effect-delay="100"></div>
  6. <h4 class="text-center object-non-visible" data-animation-effect="fadeIn" data-effect-delay="100"><?php the_excerpt(); ?></h4>
  7. </div>
  8. </div>
  9. </div>
  10.  
  11. <!-- Blog Area -->
  12. <div class="<?php appointment_post_layout_class(); ?>" >
  13. <?php
  14. if ( have_posts() ) :
  15. // Start the Loop.
  16. while ( have_posts() ) : the_post();
  17. get_template_part('content','');
  18. endwhile;
  19. endif;
  20.  
  21.  
  22.  
  23. // Previous/next page navigation.
  24. the_posts_pagination( array(
  25. 'prev_text' => '<i id="pagination" class="fa fa-angle-double-left"></i>',
  26. 'next_text' => '<i id="pagination" class="fa fa-angle-double-right"></i>',
  27. ) );
  28. ?>
  29. </div>
  30. <!-- /Blog Area -->
Add Comment
Please, Sign In to add comment