File: /home/mmickelson/martyknows.com/wp-content/themes/itheme2/content-single.php
<?php
/**
* @package WordPress
* @subpackage iTheme2
* @since iTheme2 1.1-wpcom
*/
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<?php the_post_thumbnail( 'large-feature' ); ?>
<div class="post-date">
<span class="month"><?php the_time( 'M' ); ?></span>
<span class="day"><?php the_time( 'j' ); ?></span>
<span class="year"><?php the_time( 'Y' ); ?></span>
</div>
<h1 class="entry-title"><?php the_title(); ?></h1>
</header><!-- .entry-header -->
<?php if ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'itheme2' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link"><strong>' . __( 'Pages:', 'itheme2' ) . '</strong>', 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<footer class="entry-meta">
<?php if ( 'post' == get_post_type() ) : ?>
<?php
$author_name = esc_html( get_the_author() );
if ( is_multi_author() )
$author_name = get_the_author_link();
printf( __( 'By %1$s', 'itheme2' ), $author_name );
?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'itheme2' ) );
if ( $categories_list && itheme2_categorized_blog() ) :
?>
<span class="sep"> • </span>
<span class="cat-links">
<?php printf( __( 'Posted in %1$s', 'itheme2' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ', ', 'itheme2' ) );
if ( $tags_list ) :
?>
<span class="sep"> • </span>
<span class="tag-links">
<?php printf( __( 'Tagged %1$s', 'itheme2' ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?>
<?php edit_post_link( __( 'Edit', 'itheme2' ), '<span class="sep"> • </span><span class="edit-link">', '</span>' ); ?>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( comments_open() || ( '0' != get_comments_number() && ! comments_open() ) ) : ?>
<div class="comments-link">
<?php comments_popup_link( '<span class="no-replies">0</span>', '1', '%' ); ?>
</div>
<?php endif; // Comments ?>
</footer><!-- #entry-meta -->
</article><!-- #post-<?php the_ID(); ?> -->