2010-03-29 22:03:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2010-05-17 06:32:03 +00:00
|
|
|
* The template for displaying all pages.
|
2010-03-29 22:03:15 +00:00
|
|
|
*
|
|
|
|
* This is the template that displays all pages by default.
|
2010-07-13 03:00:08 +00:00
|
|
|
* Please note that this is the WordPress construct of pages
|
|
|
|
* and that other 'pages' on your WordPress site will use a
|
2010-03-29 22:03:15 +00:00
|
|
|
* different template.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 17:10:21 +00:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 06:36:11 +00:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 22:03:15 +00:00
|
|
|
*/
|
|
|
|
|
2010-06-11 16:55:41 +00:00
|
|
|
get_header(); ?>
|
2010-02-08 18:02:23 +00:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 21:10:12 +00:00
|
|
|
<div id="content" role="main">
|
2010-02-08 18:02:23 +00:00
|
|
|
|
2010-10-09 09:17:42 +00:00
|
|
|
<?php
|
|
|
|
/* Run the loop to output the page.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-page.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'page' );
|
|
|
|
?>
|
2010-05-17 06:36:11 +00:00
|
|
|
|
2010-02-08 18:02:23 +00:00
|
|
|
</div><!-- #content -->
|
2010-02-07 16:16:26 +00:00
|
|
|
</div><!-- #container -->
|
2010-02-08 18:02:23 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-03-16 20:17:22 +00:00
|
|
|
<?php get_footer(); ?>
|