Advertisement
Guest User

single.php

a guest
May 23rd, 2012
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="container">
  4. <div id="single">
  5. <?php if(have_posts()) : while(have_posts()) : the_post(); ?>
  6. <?php endwhile; ?>
  7. <?php else : ?>
  8. <p>I'm not sure what you're looking for.</p>
  9. <?php endif; ?>
  10.  
  11. <div id="headline">
  12. <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></h2>
  13. </div><!-- end headline -->
  14. <div id="post-meta">
  15. <p>written by <?php the_author(); ?> on <?php the_date(); ?></p>
  16. </div><!-- end post-meta -->
  17. <div id="post">
  18. <?php the_content('read more...'); ?>
  19. </div><!-- end post -->
  20. <div class="share">
  21. <div class="social">
  22. <ul>
  23. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/facebook.png" alt="Like on Facebook" /></a></li>
  24. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/twitter.png" alt="Follow on Twitter" /></a></li>
  25. <li><a href="#"><img src="<?php echo get_template_directory_uri(); ?>/img/linkedin.png" alt="Connect on LinkedIn" /></a>
  26. </ul>
  27. </div><!-- end social -->
  28. <div class="comments">
  29. <a href="<?php comments_link(); ?>"><?php comments_number('0 comments', '1 comment', '% comments'); ?></a>
  30. </div><!-- end comments -->
  31. </div><!-- end share -->
  32. </div><!-- end single -->
  33.  
  34. <?php get_sidebar(); ?>
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement