Skip to content

Instantly share code, notes, and snippets.

Created May 13, 2013 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/5567650 to your computer and use it in GitHub Desktop.
Save anonymous/5567650 to your computer and use it in GitHub Desktop.
ove2
<?php
/**
* The template for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package _s
* @since _s 1.0
*/
get_header(); ?>
<div id="content-wrapper" class="site-content">
<div id="content" role="main">
<section>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; // end of the loop. ?>
</section>
</div><!-- #content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment