2010-03-29 18:03:15 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2010-05-17 02:32:03 -04:00
|
|
|
* The main template file.
|
2010-03-29 18:03:15 -04:00
|
|
|
*
|
|
|
|
* This is the most generic template file in a WordPress theme
|
|
|
|
* and one of the two required files for a theme (the other being style.css).
|
2010-11-19 00:37:47 -05:00
|
|
|
* It is used to display a page when nothing more specific matches a query.
|
2010-03-29 18:03:15 -04:00
|
|
|
* E.g., it puts together the home page when no home.php file exists.
|
|
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 13:10:21 -04:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 02:36:11 -04:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-29 18:03:15 -04:00
|
|
|
*/
|
2010-06-11 12:55:41 -04:00
|
|
|
|
|
|
|
get_header(); ?>
|
2010-02-08 12:59:08 -05:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 17:10:12 -04:00
|
|
|
<div id="content" role="main">
|
2010-02-08 12:59:08 -05:00
|
|
|
|
2010-03-25 18:04:27 -04:00
|
|
|
<?php
|
|
|
|
/* Run the loop to output the posts.
|
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-index.php and that will be used instead.
|
|
|
|
*/
|
|
|
|
get_template_part( 'loop', 'index' );
|
|
|
|
?>
|
2010-02-08 12:59:08 -05:00
|
|
|
</div><!-- #content -->
|
2010-02-07 11:16:26 -05:00
|
|
|
</div><!-- #container -->
|
2010-02-08 12:59:08 -05:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-02-07 11:16:26 -05:00
|
|
|
<?php get_footer(); ?>
|