Guest User

Untitled

a guest
Oct 20th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?php get_header() ?>
  2.  
  3. <div id="content">
  4.  
  5. <?php while ( have_posts() ) : the_post() ?>
  6. <div id="post-<?php the_ID() ?>" class="post">
  7. <div class="postleft">
  8. <div class="post-meta"><?php the_time('F j, Y'); ?></div>
  9. </div>
  10. <div class="postright">
  11. <h2 class="post-title"><a href="<?php the_permalink() ?>" title="<?php the_title() ?>" rel="bookmark"><?php the_title() ?></a></h2>
  12. <div class="post-content">
  13. <?php
  14. if(has_post_thumbnail()) {
  15. echo '<div class="post-thumb">
  16. <?php if ( has_post_thumbnail() ) { the_post_thumbnail( "homepage-thumb" ); } ?>
  17. </div>
  18. <?php the_excerpt(); ?>';
  19. } else {
  20. echo '<?php the_excerpt(); ?>';
  21. }
  22. ?>
  23. </div>
  24. </div>
  25. </div><!-- .post -->
  26. <?php endwhile ?>
  27.  
  28. <div class="navigation">
  29. <div class="navleft"><?php next_posts_link('&laquo; Older Posts', '0') ?></div>
  30. <div class="navright"><?php previous_posts_link('Newer Posts &raquo;', '0') ?></div>
  31. </div>
  32.  
  33. </div><!-- #content -->
  34.  
  35. <?php get_sidebar() ?>
  36. <?php get_footer() ?>
Add Comment
Please, Sign In to add comment