mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-25 02:27:50 +01:00
1111996fe1
git-svn-id: http://svn.automattic.com/wordpress/trunk@13816 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
408 B
PHP
18 lines
408 B
PHP
<?php get_header(); ?>
|
|
|
|
<div id="container">
|
|
<div id="content">
|
|
|
|
<?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' );
|
|
?>
|
|
</div><!-- #content -->
|
|
</div><!-- #container -->
|
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_footer(); ?>
|