File: /home/mmickelson/martyknows.com/wp-content/themes/motion/author.php
<?php
get_header(); ?>
<div id="main">
<div id="content">
<?php the_author_meta( 'display_name', get_query_var( 'author' ) ); ?>
<h2 id="contentdesc">Entries by <span><?php echo $curauth->nickname; ?></span> »</h2>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<div class="posttop">
<h2 class="posttitle"><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="postmetatop">
<div class="categs">Filed Under: <?php the_category( ', ' ); ?></div>
<div class="date"><span><?php the_time( get_option( 'date_format' ) ); ?></span></div>
</div>
</div>
</div><!-- /post -->
<?php endwhile; ?>
<?php else : ?>
<div class="post">
<div class="posttop">
<h2 class="posttitle"><a href="#">Oops!</a></h2>
</div>
<div class="postcontent">
<p>What you are looking for doesn't seem to be on this page...</p>
</div>
</div><!-- /post -->
<?php endif; ?>
<div id="navigation">
<?php if ( function_exists( 'wp_pagenavi' ) ) : ?>
<?php wp_pagenavi(); ?>
<?php else : ?>
<div class="alignleft"><?php next_posts_link( '« Older Entries' ); ?></div>
<div class="alignright"><?php previous_posts_link( 'Newer Entries »' ); ?></div>
<?php endif; ?>
</div><!-- /navigation -->
</div><!-- /content -->
<?php get_sidebar(); ?>
</div><!-- /main -->
<?php get_footer(); ?>