Index: wp-org-parent/footer.php
===================================================================
--- wp-org-parent/footer.php	(revision 0)
+++ wp-org-parent/footer.php	(revision 0)
@@ -0,0 +1,3 @@
+<?php
+
+require( WPORGPATH . 'footer.php' );
Index: wp-org-parent/style.css
===================================================================
--- wp-org-parent/style.css	(revision 0)
+++ wp-org-parent/style.css	(revision 0)
@@ -0,0 +1,11 @@
+/*
+Theme Name: WP.org Parent Theme
+Theme URI: http://wordpress.org/
+Description: This theme pulls in the default WordPress.org header and gives a handy starting point to building subdomain themes.
+Author: WordPress.org Peeps
+Author URI: http://make.wordpress.org/meta
+Version: 1.0
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+*/
+
Index: wp-org-parent/index.php
===================================================================
--- wp-org-parent/index.php	(revision 0)
+++ wp-org-parent/index.php	(revision 0)
@@ -0,0 +1,17 @@
+<?php get_header(); ?>
+
+<div class="wrapper">
+	<?php while( have_posts() ): the_post(); ?>
+		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
+
+			<h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
+
+			<div class="entry-content">
+				<?php the_content(); ?>
+			</div><!-- .entry-content -->
+
+		</div><!-- #post-## -->
+	<?php endwhile; ?>
+</div><!-- /wrapper -->
+
+<?php get_footer(); ?>
Index: wp-org-parent/header.php
===================================================================
--- wp-org-parent/header.php	(revision 0)
+++ wp-org-parent/header.php	(revision 0)
@@ -0,0 +1,10 @@
+<?php
+$GLOBALS['pagetitle'] = wp_title( '&laquo;', false, 'right' ) . ' ' . get_bloginfo( 'name' );
+require( WPORGPATH . 'header.php' );
+?>
+
+<div id="headline">
+		<div class="wrapper">
+				<h2><a href="<?php echo esc_url( home_url() ); ?>"><?php bloginfo( 'name' ); ?></a></h2>
+		</div>
+</div>
