Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div class="col-2">
  3. <?php while(have_posts()) : the_post(); ?>
  4. <div class="post">
  5. <div class="title">
  6. <h3 class="png"><span class="png"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></span></h3>
  7. </div>
  8. <div class="info">
  9. <ul>
  10. <li><?php the_time('F dS, Y') ?></li>
  11. <li><?php the_category(','); ?></li>
  12. <li><em><?php the_author(); ?></em></li>
  13. </ul>
  14. </div>
  15. <div class="indent">
  16. <?php the_content("); ?>
  17. <span class="more"><em><a href="<?php the_permalink(); ?>">Continue reading</a></em></span>
  18. </div>
  19.  
  20. </div>
  21. <div class="divider"></div>
  22. <?php endwhile; ?>
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. <?php get_sidebar(); ?>
  28. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement