I've been tweaking the obandes theme to get it to look like my website and have somehow disabled post content from appearing on the homepage. Full posts appear everywhere (which is what I want), but the homepage shows nothing, not even an excerpt. I've combed through the loop.php and loop-format.php and format.php pages and everything seems fine. I can't figure out if I accidentally deleted something from one of the template pages.
Any ideas?!
Oh, here is the index.php code:
<?php
/**
* The index for obandes.
*
* @package WordPress
* @subpackage obandes
* @since obandes 0.1
*/
?>
<?php get_header();?>
<?php if(WP_DEBUG == true){
echo '<!--'.basename(__FILE__,'.php').'['.basename(dirname(__FILE__)).']-->'."\n"; }?>
<section id="yui-main">
<?php if(is_home() === false){
get_template_part( 'loop', 'default' );
}else{
get_template_part( 'loop', 'format' );
} ?>
<div class="clear"></div>
</section>
<?php get_sidebar('1');?>
<?php get_footer();?>