Guest User

Untitled

a guest
Jun 22nd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="wrapper">
  4. <div id="middle">
  5. <div id="main" class="column">
  6. <div id="content">
  7. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  8. <div class="title"><?php the_title(); ?></div>
  9. <div class="time">Posted on <?php the_time('F jS, Y') ?></div>
  10. <div class="postcontent"><p><?php the_content(__('(more...)')); ?></p></div>
  11.  
  12. <?php endwhile; else: ?>
  13. <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
  14. <?php endif; ?>
  15.  
  16. </div> <!-- content -->
  17. </div><!-- main -->
  18.  
  19. <?php get_sidebar(); ?>
  20.  
  21. </div>
  22.  
  23.  
  24.  
  25.  
  26. <?php get_footer(); ?>
Add Comment
Please, Sign In to add comment