Skip to content

Instantly share code, notes, and snippets.

@coreyweb
Created December 6, 2011 01:10
Show Gist options
  • Save coreyweb/1436214 to your computer and use it in GitHub Desktop.
Save coreyweb/1436214 to your computer and use it in GitHub Desktop.
DIY Template - Proposed
<?php get_header(); ?>
<?php get_template_part( 'layouts/head', 'single' ); ?>
<?php get_template_part( 'content/article-header', 'single' ); ?>
<?php get_template_part( 'content/article-content', 'single' ); ?>
<?php get_template_part( 'content/article-footer', 'single' ); ?>
<?php get_sidebar(); ?>
<?php get_template_part( 'layouts/foot', 'single' ); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment