Index: archive.php
===================================================================
--- archive.php	(revision 1632)
+++ archive.php	(working copy)
@@ -42,6 +42,9 @@
 					<?php posts_nav_link( ' &#8212; ', __( '&laquo; Newer Posts', 'rosetta' ), __( 'Older Posts &raquo;', 'rosetta' ) ); ?>
 				</nav>
 			</div>
+			<div class="col-3">
+				<?php get_sidebar( 'blog' ); ?>
+			</div>
 		</div>
 	</div>
 
Index: front-page.php
===================================================================
--- front-page.php	(revision 1632)
+++ front-page.php	(working copy)
@@ -142,10 +142,7 @@
 				</div>
 
 				<div class="col-3">
-					<h5><?php _e( 'Blog Archives', 'rosetta' ); ?></h5>
-					<ul>
-						<?php wp_get_archives('type=monthly&limit=12'); ?>
-					</ul>
+					<?php get_sidebar( 'blog' ); ?>
 				</div>
 			</div>
 		</div>
Index: sidebar-blog.php
===================================================================
--- sidebar-blog.php	(revision 0)
+++ sidebar-blog.php	(working copy)
@@ -0,0 +1,9 @@
+<h4><?php _e( 'Categories', 'rosetta' ); ?></h4>
+<ul>
+	<?php wp_list_categories( 'title_li=&show_count=1&orderby=count&order=DESC&number=10' ); ?>
+</ul>
+
+<h4><?php _e( 'Blog Archives', 'rosetta' ); ?></h4>
+<ul>
+	<?php wp_get_archives('type=monthly&limit=12'); ?>
+</ul>
\ No newline at end of file
Index: single.php
===================================================================
--- single.php	(revision 1632)
+++ single.php	(working copy)
@@ -40,12 +40,7 @@
 			<?php posts_nav_link(' &#8212; ', __( '&laquo; Newer Posts', 'rosetta' ), __( 'Older Posts &raquo;', 'rosetta' ) ); ?>
 		</div>
 		<div class="col-3">
-			<div class="blog-categories">
-				<h4><?php _e( 'Categories', 'rosetta' ); ?></h4>
-				<ul>
-					<?php wp_list_categories( 'title_li=&show_count=1&orderby=count&order=DESC&number=10' ); ?>
-				</ul>
-			</div>
+			<?php get_sidebar( 'blog' ); ?>
 		</div>
 	</div>
 </div>
