2010-02-17 20:05:39 +01:00
|
|
|
<?php
|
2010-03-30 00:03:15 +02:00
|
|
|
/**
|
|
|
|
* Template Name: One column, no sidebar
|
|
|
|
*
|
|
|
|
* A custom page template without sidebar.
|
2010-05-17 08:36:11 +02:00
|
|
|
*
|
|
|
|
* The "Template Name:" bit above allows this to be selectable
|
|
|
|
* from a dropdown menu on the edit page screen.
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 19:10:21 +02:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 08:36:11 +02:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-30 00:03:15 +02:00
|
|
|
*/
|
|
|
|
|
2010-06-11 18:55:41 +02:00
|
|
|
get_header(); ?>
|
2010-02-17 20:05:39 +01:00
|
|
|
|
2010-05-17 08:36:11 +02:00
|
|
|
<div id="container" class="one-column">
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="content" role="main">
|
2010-02-17 20:05:39 +01:00
|
|
|
|
2010-10-09 11:17:42 +02: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 08:36:11 +02:00
|
|
|
|
2010-02-17 20:05:39 +01:00
|
|
|
</div><!-- #content -->
|
|
|
|
</div><!-- #container -->
|
|
|
|
|
2010-03-16 21:17:22 +01:00
|
|
|
<?php get_footer(); ?>
|