Index: wp-content/themes/twentyeleven/taxonomy.php
===================================================================
--- wp-content/themes/twentyeleven/taxonomy.php	(revision 0)
+++ wp-content/themes/twentyeleven/taxonomy.php	(revision 0)
@@ -0,0 +1,49 @@
+<?php
+/**
+ * The default template for displaying Term Archive pages.
+ *
+ * @package WordPress
+ * @subpackage Twenty_Eleven
+ * @since Twenty Eleven 1.0
+ */
+
+get_header(); ?>
+
+		<section id="primary">
+			<div id="content" role="main">
+
+				<header class="page-header">
+					<h1 class="page-title"><?php
+						$taxonomy = get_taxonomy( get_query_var( 'taxonomy' ) );
+						$taxonomy_name = __( 'Taxonomy', 'twentyeleven' );
+						if ( isset( $taxonomy->labels->singular_name ) ) {
+							$taxonomy_name = $taxonomy->labels->singular_name;
+						}
+						printf( __( '%1$s Archives: %2$s', 'twentyeleven' ), $taxonomy_name, '<span>' . single_term_title( '', false ) . '</span>' );
+					?></h1>
+
+					<?php $description = term_description(); if ( ! empty( $description ) ) echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $description . '</div>' ); ?>
+				</header>
+
+				<?php twentyeleven_content_nav( 'nav-above' ); ?>
+
+				<?php /* Start the Loop */ ?>
+				<?php while ( have_posts() ) : the_post(); ?>
+
+					<?php
+						/* Include the Post-Format-specific template for the content.
+						 * If you want to overload this in a child theme then include a file
+						 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
+						 */
+						get_template_part( 'content', get_post_format() );
+					?>
+
+				<?php endwhile; ?>
+
+				<?php twentyeleven_content_nav( 'nav-below' ); ?>
+
+			</div><!-- #content -->
+		</section><!-- #primary -->
+
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
\ No newline at end of file
