File: /home/mmickelson/tfgarchive/wpblogtest1.old/wp-content/themes/thematic/author.php
<?php
global $options;
foreach ($options as $value) {
if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_settings( $value['id'] ); }
}
?>
<?php get_header() ?>
<div id="container">
<div id="content">
<?php the_post() ?>
<h1 class="page-title author"><?php $author = get_the_author(); ?><?php _e('Author Archives: ', 'thematic'); ?><span><?php echo $author ?></span></h1>
<div id="nav-above" class="navigation">
<?php if(function_exists('wp_pagenavi')) { ?>
<?php wp_pagenavi(); ?>
<?php } else { ?>
<div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">«</span> Older posts', 'thematic')) ?></div>
<div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">»</span>', 'thematic')) ?></div>
<?php } ?>
</div>
<?php /* if display author bio is selected */ if($thm_authorinfo == 'true' & !is_paged()) { ?>
<div id="author-info" class="vcard">
<?php thematic_author_info_avatar(); ?>
<div class="author-bio note">
<?php if ( !(''== $authordata->user_description) ) : echo apply_filters('archive_meta', $authordata->user_description); endif; ?>
</div>
<div id="author-email">
<a class="email" title="<?php echo antispambot($authordata->user_email); ?>" href="mailto:<?php echo antispambot($authordata->user_email); ?>"><?php _e('Email ', 'thematic') ?><span class="fn n"><span class="given-name"><?php echo $authordata->first_name; ?></span> <span class="family-name"><?php echo $authordata->last_name; ?></span></span></a>
<a class="url" style="display:none;" href="<?php echo get_option('home') ?>/"><?php bloginfo('name') ?></a>
</div>
</div><!-- #author-info -->
<?php } ?>
<?php rewind_posts(); while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="<?php thematic_post_class(); ?>">
<?php thematic_postheader(); ?>
<div class="entry-content ">
<?php the_excerpt(''.__('Read More <span class="meta-nav">»</span>', 'thematic').'') ?>
</div>
<?php thematic_postfooter(); ?>
</div><!-- .post -->
<?php endwhile ?>
<div id="nav-below" class="navigation">
<?php if(function_exists('wp_pagenavi')) { ?>
<?php wp_pagenavi(); ?>
<?php } else { ?>
<div class="nav-previous"><?php next_posts_link(__('<span class="meta-nav">«</span> Older posts', 'thematic')) ?></div>
<div class="nav-next"><?php previous_posts_link(__('Newer posts <span class="meta-nav">»</span>', 'thematic')) ?></div>
<?php } ?>
</div>
</div><!-- #content -->
</div><!-- #container -->
<?php get_sidebar() ?>
<?php get_footer() ?>