File: /home/mmickelson/martyknows.com/wp-content/themes/andreas04/single.php
<?php get_header(); ?>
<div id="content">
<div id="left">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class( 'entry' ); ?>>
<h2><?php the_title(); ?></h2>
<?php the_content(''); ?>
<?php wp_link_pages(); ?>
<p class="meta">
<span class="date">
<?php $arc_year = get_the_time('Y'); $arc_month = get_the_time('m'); $arc_day = get_the_time('d'); ?>
<a href="<?php echo get_day_link("$arc_year", "$arc_month", "$arc_day"); ?>"><?php the_time(get_option("date_format")); ?></a> - <!-- at <?php the_time() ?> -->
</span>
<span class="postedby">
<?php _e('Posted by','andreas04'); ?>
<?php the_author_posts_link(); ?> |
<?php the_category(', '); ?>
<?php the_tags( ' | ', ', ', ''); ?>
</span>
<?php edit_post_link(__('Edit','andreas04'),'<span class="editlink"> | ','</span>'); ?>
</p>
</div>
<?php comments_template(); ?>
<p class="pagenav"><?php previous_post('%',__('« Previous','andreas04'), 'no'); ?> | <?php next_post('%',__('Next »','andreas04'), 'no'); ?></p>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>