29 lines
411 B
PHP
29 lines
411 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Index Template
|
||
|
*
|
||
|
* This template should not be shown. It is a placeholder.
|
||
|
* Specific templates for each type of content are available.
|
||
|
**/
|
||
|
?>
|
||
|
<?php get_header(); ?>
|
||
|
|
||
|
<div id="main">
|
||
|
|
||
|
<div id="content">
|
||
|
<?php get_template_part( 'loop', 'index' ); ?>
|
||
|
</div>
|
||
|
<!--end Content-->
|
||
|
|
||
|
<?php //if(!is_home()) {
|
||
|
//get_sidebar('secondary');} ?>
|
||
|
|
||
|
</div>
|
||
|
<!--end Main-->
|
||
|
|
||
|
<?php get_footer(); ?>
|
||
|
|
||
|
|
||
|
|
||
|
|