Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. - get_header();
  2.  
  3. div(role="index")
  4. main
  5. article
  6. - if ( have_posts() ) :
  7. - while ( have_posts() ) :
  8. - the_post();
  9.  
  10. //- entry.php is the layout for each post within the archive, blog, index, and search pages.
  11. - include('assets/includes/entry.php');
  12.  
  13. - endwhile;
  14. - pagination();
  15. - else :
  16. - get_template_part('assets/includes/missing.php');
  17. - endif;
  18. aside
  19. - get_sidebar();
  20.  
  21. - get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement