File: /home/mmickelson/theflexguy.com/wp-content/themes/hybrid/page-yearly.php
<?php
/**
 * Template Name: Yearly
 *
 * The Yearly page template is used to show a list of your post archives by year. For each year a 
 * post has been made, the year is listed along with the number of posts for that particular year.
 *
 * @package Hybrid
 * @subpackage Template
 * @deprecated 0.9.0 This template will eventually be moved to the Hybrid page templates pack.
 */
get_header(); // Loads the header.php template. ?>
	<div id="content" class="hfeed content">
		<?php do_atomic( 'before_content' ); // hybrid_before_content ?>
		<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
			<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
				<?php do_atomic( 'before_entry' ); // hybrid_before_entry ?>
				<div class="entry-content">
					<?php the_content(); ?>
					<ul class="xoxo yearly-archives">
						<?php wp_get_archives( array( 'type' => 'yearly', 'show_post_count' => true ) ); ?>
					</ul><!-- .xoxo .yearly-archives -->
					<?php wp_link_pages( array( 'before' => '<p class="page-links pages">' . __( 'Pages:', 'hybrid' ), 'after' => '</p>' ) ); ?>
				</div><!-- .entry-content -->
				<?php do_atomic( 'after_entry' ); // hybrid_after_entry ?>
			</div><!-- .hentry -->
			<?php do_atomic( 'after_singular' ); // hybrid_after_singular ?>
			<?php comments_template( '/comments.php', true ); // Loads the comments.php template ?>
			<?php endwhile; ?>
		<?php else: ?>
			<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
		<?php endif; ?>
		<?php do_atomic( 'after_content' ); // hybrid_after_content ?>
	</div><!-- .content .hfeed -->
<?php get_footer(); // Loads the footer.php template. ?>