Advertisement
Guest User

Untitled

a guest
Nov 16th, 2011
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <?php if ( have_posts() ) : ?>
  3. <?php while ( have_posts() ) : the_post(); ?>
  4. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  5. <div class="post-header">
  6. <div class="tags"><?php the_tags( '<span>Tags</span> <p>', ', ', '</p>' ); ?></div>
  7. <h1><?php the_title(); ?></h1>
  8. <div class="author"><?php printf( __( 'by %s on', 'titan' ), get_the_author() ); ?> <?php the_time( get_option( 'date_format' ) ); ?></div>
  9. </div><!--end post header-->
  10. <div class="entry clear">
  11. <?php if ( function_exists( 'add_theme_support' ) ) the_post_thumbnail( array(250,9999), array( 'class' => ' alignleft border' ) ); ?>
  12. <?php the_content( __( 'read more...', 'titan' ) ); ?>
  13. <?php edit_post_link( __( 'Edit this', 'titan' ), '<p>', '</p>' ); ?>
  14. <?php wp_link_pages(); ?>
  15. </div><!--end entry-->
  16. <div class="meta clear">
  17. <p><?php _e( 'From &rarr;', 'titan' ); ?> <?php the_category( ', ' ); ?></p>
  18. </div><!--end meta-->
  19. </div><!--end post-->
  20. <?php endwhile; /* rewind or continue if all posts have been fetched */ ?>
  21. <?php comments_template( '', true ); ?>
  22. <?php else : ?>
  23. <?php endif; ?>
  24. </div><!--end content-->
  25. <?php get_sidebar(); ?>
  26. <?php get_footer(); ?>
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement