Advertisement
Guest User

Sports Mag 1

a guest
Sep 30th, 2012
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <div id="headgal">
  3. <div id="main-content"> <div id="inside">
  4. <div id="content">
  5. <div id="homepost">
  6. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  7. <div class="post">
  8. <h2> <?php the_title(); ?></h2>
  9. <div class="pmetasingle"> <?php _e("Posted By", "nt"); ?> <b><a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>" title="<?php printf( esc_attr__( 'View all posts by %s'), get_the_author() ); ?>"><?php the_author(); ?> </a></b>
  10. <?php _e("On", "nt"); ?> <?php the_time('l, F jS, Y') ?> <?php _e("With", "nt"); ?> <a href="#comments"> <?php comments_number('0 Comments','1 Comment','2 Comments'); ?></a>
  11. <?php edit_post_link('Edit', ' <span>&middot;</span> ', ''); ?> </div>
  12. <div class="entry"> <?php the_content(); ?> </div>
  13. <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  14. <div class="ptags"><?php the_tags('Tags: ', ', ', ''); ?></div>
  15. </div> <?php endwhile; else: ?>
  16. <h2><?php _e("Not Found", "nt"); ?></h2> <p><?php _e("Sorry, but you are looking for something that isn't here.", "nt"); ?></p><?php endif; ?>
  17. <?php comments_template(); ?>
  18. </div> </div> </div> </div>
  19. <?php include(TEMPLATEPATH . '/sidebar-archive.php'); ?>
  20. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement