Index: codex-buddypress-org/page-section.php
===================================================================
--- codex-buddypress-org/page-section.php	(revision 0)
+++ codex-buddypress-org/page-section.php	(revision 0)
@@ -0,0 +1,46 @@
+<?php
+/*
+Template Name: Page Section
+*/
+?>
+
+<?php get_header(); ?>
+<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
+
+				<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
+
+				<?php if ( get_the_content() ) :
+
+						the_content( __( '<p class="serif">Read the rest of this page &rarr;</p>', 'buddypress' ) );
+
+						wp_link_pages( array( 'before' => __( '<p><strong>Pages:</strong> ', 'buddypress' ), 'after' => '</p>', 'next_or_number' => 'number') );
+
+					else : ?>
+
+						<p>This page has no content of its own, but contains some sub-pages listed in the sidebar.</p>
+						<p>Please edit this page and add something helpful!</p>
+
+				<?php endif; ?>
+
+<?php endwhile;  endif;?>
+
+<hr class="hidden" />
+
+<?php
+	global $post;
+
+	$args         = array( 'order' => 'ASC', );
+	$revisions    = wp_get_post_revisions( get_queried_object_id(), $args );	
+	$post_authors = array( $post->post_author => 1 );
+	foreach( (array)$revisions as $revision ) {
+		$post_authors[$revision->post_author] += 1;
+	}
+	asort( $post_authors, SORT_NUMERIC );
+
+	global $codex_contributors;
+	$codex_contributors = array_reverse( $post_authors, true );
+?>
+				
+<?php locate_template( array( 'sidebar-section.php' ), true ); ?>
+
+<?php get_footer(); ?>
\ No newline at end of file
Index: codex-buddypress-org/page.php
===================================================================
--- codex-buddypress-org/page.php	(revision 843)
+++ codex-buddypress-org/page.php	(working copy)
@@ -1,7 +1,7 @@
 <?php get_header(); ?>
 <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
 
-				<h1 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h1>
+				<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
 
 				<?php if ( get_the_content() ) :
 
Index: codex-buddypress-org/screen.css
===================================================================
--- codex-buddypress-org/screen.css	(revision 843)
+++ codex-buddypress-org/screen.css	(working copy)
@@ -6,12 +6,40 @@
 
 /* Typography
 --------------------------------------------------------------------*/
+/* Enlarge and stagger heading sizes - temp! */
+body h1 {font-size: 28px;}
+body h2 {font-size: 24px;}
+body h3 {font-size: 20px;}
+body h4 {font-size: 18px;}
+body h5 {font-size: 16px;}
+body h6 {font-size: 14px;}
 
 .content h1 {
   font-size: 24px;
   margin-bottom: .5em;
 }
+html body .content{ font-size: 16px; font-size: 1rem;}
+/* Navigation elements
+ ----------------------------------------------------------------- */
 
+/*__ Subnav __*/
+
+/* Codex breadcrumbs */
+
+div#subnav {
+	clear: both;
+	margin-top: 134px;
+}
+#subnav #subnav-inner {	padding-left: 0;}
+
+/* Sidebar menu navigation */
+
+.sidebar .listified ul li a {font-size: 14px; font-weight: bold;}
+.sidebar .listified ul ul.children li {margin-left: 10px;}
+.sidebar .listified ul ul.children li a {font-weight: normal;}
+
+
+
 /* Sections
 * ----------------------------------------------------------------- */
 .table-of-contents-widget {
Index: codex-buddypress-org/sidebar-section.php
===================================================================
--- codex-buddypress-org/sidebar-section.php	(revision 0)
+++ codex-buddypress-org/sidebar-section.php	(revision 0)
@@ -0,0 +1,84 @@
+</div>
+<div class="sidebar">
+
+	<?php if ( is_page() || is_front_page() ):
+
+		$show_related = false;
+		if ( !empty( $post->post_parent ) ) { 
+
+			$children = wp_list_pages('title_li=&echo=0&child_of=' . $post->ID);
+			if ( $children ) {
+				$rel = '<ul>' . $children . '</ul>';
+				echo '<div class="related-content-widget widget listified"><h3 class="widgettitle">In This Section</h3>' . $rel . '</div>';
+				$show_related = true;
+			}
+		} 
+
+			if ( !is_page( 'home' ) && $show_related ) {
+				$rel = '';
+				$cat = get_the_category();
+				$relateds = get_posts('nopaging=1&post_type=page&post_parent=0&orderby=title&order=ASC&cat=' . $cat[0]->term_id . '&exclude=' . $post->ID . ',');
+				if ( $relateds ) {
+					foreach ($relateds as $related) {
+						$title = apply_filters('the_title', $related->post_title);
+						$rel .= '<li><a href="' . get_permalink($related->ID) . '" title="' . $title . '">' . $title . '</a></li>';
+					}
+					$rel = '<ul>' . $rel . '</ul>';
+					echo '<div class="related-content-widget widget listified"><h3 class="widgettitle">Related</h3>' . $rel . '</div>';
+				}
+			}
+		?>
+
+	<?php endif; ?>
+
+
+	<div class="search-widget">
+		<form method="get" id="searchform" action="<?php bloginfo( 'url' ); ?>/">
+			<input type="text" value="<?php the_search_query(); ?>" name="s" id="s" placeholder="Search" />
+			<!-- <input type="submit" id="searchsubmit" value="Search" /> -->
+		</form>
+	</div>
+
+	<div class="user-widget">
+		<ul>
+			<?php if ( is_user_logged_in() ) : ?>
+				<li><a href="<?php bloginfo( 'url' ); ?>/wp-admin/post-new.php?post_type=page">Create New Page</a></li>
+				<li><?php edit_post_link( __( 'Edit This Page', 'bborg' ) ); ?></li>
+			<?php endif; ?>
+			<?php if ( ! is_user_logged_in() ) : ?>
+				<li><a href="//wordpress.org/support/register.php">Register</a></li>
+				<li><a href="//wordpress.org/support/bb-login.php">Lost Password</a></li>
+				<li><a href="<?php bloginfo( 'url' ); ?>/login/">Log In</a></li>
+			<?php endif; ?>
+		</ul>
+	</div>
+
+
+	<?php if ( is_tax() ) {
+		global $codex_contributors;
+
+		if ( !empty( $codex_contributors ) ) {
+			echo '<div class="section-contributors widget">';
+			echo '<h3 class="widgettitle">Top Authors</h3>';
+			$codex_contributors = array_slice( $codex_contributors, 0, 5, true );
+			foreach( (array)$codex_contributors as $contributor_id => $count ) {
+				$userdata = get_userdata( $contributor_id );
+				echo '<div class="section-contributor">';
+				echo '<div class="contributor-mug float-left">';
+				echo get_avatar( $contributor_id, 48 );
+				echo '</div>';
+				echo '<div class="inner">';
+				echo '<h5>' . esc_html( $userdata->display_name ) . '</h5>';
+				echo '<p>' . esc_html( $count ) . ' document';
+				if ( $count > 1 ) 
+					echo 's';
+				echo '</p>';
+				echo '</div>';
+				echo '<div class="clear-left"></div>';
+				echo '</div>';
+			}
+			echo '</div>';
+		}
+	} ?>
+
+</div>
Index: codex-buddypress-org/sidebar.php
===================================================================
--- codex-buddypress-org/sidebar.php	(revision 843)
+++ codex-buddypress-org/sidebar.php	(working copy)
@@ -26,7 +26,7 @@
 			$children = wp_list_pages('title_li=&echo=0&child_of=' . $post->ID);
 			if ( $children ) {
 				$rel = '<ul>' . $children . '</ul>';
-				echo '<div class="related-content-widget widget listified"><h3 class="widgettitle">Subpages</h3>' . $rel . '</div>';
+				echo '<div class="related-content-widget widget listified"><h3 class="widgettitle">Pages &amp; Sections</h3>' . $rel . '</div>';
 				$show_related = false;
 			}
 		} ?>
