Index: front-page.php
===================================================================
--- front-page.php	(revision 1632)
+++ front-page.php	(working copy)
@@ -61,9 +61,7 @@
 <?php endwhile; ?>
 				</div>
 				<div class="col-3">
-<?php
-	get_template_part( 'download-sidebar' );
-?>
+<?php get_sidebar( 'pages' ); ?>
 				</div>
 			</div>
 		</div>
Index: page.php
===================================================================
--- page.php	(revision 1632)
+++ page.php	(working copy)
@@ -14,7 +14,7 @@
 				<?php the_content(); ?>
 			</div>
 			<div class="col-3">
-				<?php get_template_part( 'download-sidebar' ); ?>
+				<?php get_sidebar( 'pages' ); ?>
 			</div>
 		</div>
 	</div>
Index: sidebar-pages.php
===================================================================
--- sidebar-pages.php	(revision 0)
+++ sidebar-pages.php	(working copy)
@@ -0,0 +1,43 @@
+<?php
+global $rosetta;
+$latest_release = $rosetta->rosetta->get_latest_release();
+if ( false !== $latest_release ) :
+	?>
+	<p class="download-meta">
+		<a class="button download-button button-large button-large" href="<?php echo $latest_release['zip_url']; ?>">
+			<strong><?php
+				echo apply_filters( 'no_orphans',
+					sprintf(
+						__( 'Download WordPress %s', 'rosetta' ),
+						$latest_release['version']
+					)
+				);
+			?></strong>
+		</a>
+		<span><?php printf( __( '.zip &mdash; %s MB', 'rosetta' ), $latest_release['zip_size_mb'] ); ?></span>
+	</p>
+
+	<p class="download-tar">
+		<a href="<?php echo $latest_release['targz_url']; ?>"><?php printf(
+			__( 'Download .tar.gz &mdash; %s MB', 'rosetta' ),
+			$latest_release['tar_size_mb'] );
+		?></a>
+	</p>
+
+	<h3><?php _e( 'More download options', 'rosetta' ); ?></h3>
+	<ul>
+		<li><a href="/releases/#latest"><?php _e( 'Other file formats', 'rosetta' ); ?></a></li>
+		<li><a href="/releases/#older"><?php _e( 'Older versions', 'rosetta' ); ?></a></li>
+		<li><a href="/releases/#beta"><?php _e( 'Beta &amp; RC versions', 'rosetta' ); ?></a></li>
+	</ul>
+	<?php
+endif;
+?>
+
+<h3><?php _e( 'Resources', 'rosetta' ); ?></h3>
+
+<p><?php _e( 'For help with installing or using WordPress, consult our documentation in your language.', 'rosetta' ); ?></p>
+
+<ul>
+	<?php wp_list_bookmarks( 'categorize=0&category_before=&category_after=&title_li=&' ); ?>
+</ul>
