File: /home/mmickelson/martyknows.com/wp-content/themes/nuntius/content.php
<?php
/**
* @package Nuntius
* @since Nuntius 1.0
*/
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-utility">
<?php if ( comments_open() || ( '0' != get_comments_number() && ! comments_open() ) ) : ?>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'nuntius' ), __( '1 Comment', 'nuntius' ), __( '% Comments', 'nuntius' ) ); ?></span>
<?php endif; ?>
<?php edit_post_link( __( 'Edit', 'nuntius' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-utility -->
<h2 class="entry-title">
<?php if ( is_single() ) : ?>
<?php the_title(); ?>
<?php else : ?>
<a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php endif; ?>
</h2><!-- .entry-title -->
<div class="byline">
<?php nuntius_single_post_meta(); ?>
</div><!-- .byline -->
<div class="entry-content">
<?php the_content( __( 'Continue Reading' , 'nuntius' ) . ' »'); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', 'nuntius' ), 'after' => '</p>' ) ); ?>
</div><!-- .entry-content -->
<div class="entry-meta">
<?php nuntius_tag_list(); ?>
</div><!-- .entry-meta -->
</div><!-- #post-## -->
<?php if ( get_the_author_meta( 'description' ) && is_single() && is_multi_author() ) : // If a user has filled out their description, and if this is a multi-author site, show a bio on their entries ?>
<div id="author-info-box">
<div id="author-description">
<h2 id="author-info-title"><?php echo sprintf( __( 'About %s', 'nuntius' ), get_the_author() ); ?></h2>
<div id="author-avatar">
<?php echo get_avatar( get_the_author_meta( 'user_email' ), 45 ); ?>
</div><!-- #author-avatar -->
<?php the_author_meta( 'description' ); ?>
</div><!-- #author-description -->
</div><!-- #author-info-box -->
<?php endif; ?>