2010-03-29 22:03:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 17:04:10 +00:00
|
|
|
* Main template file
|
2010-03-29 22:03:15 +00: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 05:37:47 +00:00
|
|
|
* It is used to display a page when nothing more specific matches a query.
|
2010-03-29 22:03:15 +00:00
|
|
|
* E.g., it puts together the home page when no home.php file exists.
|
2019-01-09 05:09:51 +00:00
|
|
|
* Learn more: https://developer.wordpress.org/themes/basics/template-hierarchy/
|
2010-03-29 22:03:15 +00:00
|
|
|
*
|
|
|
|
* @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 17:59:08 +00:00
|
|
|
|
|
|
|
<div id="container">
|
2010-05-10 21:10:12 +00:00
|
|
|
<div id="content" role="main">
|
2010-02-08 17:59:08 +00:00
|
|
|
|
2010-03-25 22:04:27 +00:00
|
|
|
<?php
|
2013-10-09 20:39:09 +00:00
|
|
|
/*
|
2013-09-25 17:04:10 +00:00
|
|
|
* Run the loop to output the posts.
|
2010-03-25 22:04:27 +00:00
|
|
|
* If you want to overload this in a child theme then include a file
|
|
|
|
* called loop-index.php and that will be used instead.
|
|
|
|
*/
|
2015-01-22 00:42:44 +00:00
|
|
|
get_template_part( 'loop', 'index' );
|
2010-03-25 22:04:27 +00:00
|
|
|
?>
|
2010-02-08 17:59:08 +00:00
|
|
|
</div><!-- #content -->
|
2010-02-07 16:16:26 +00:00
|
|
|
</div><!-- #container -->
|
2010-02-08 17:59:08 +00:00
|
|
|
|
|
|
|
<?php get_sidebar(); ?>
|
2010-02-07 16:16:26 +00:00
|
|
|
<?php get_footer(); ?>
|