I'm working on this site http://ohsnapboutique.com/blog/. I converted the Tofourious Theme to a child theme, since my client would like several widget areas and Tofourious does not have them.
Here is my code for the index page. For some reason it isn't reading the footer.
<?php
global $options;
foreach ($options as $value) {
if (get_option( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; }
else { $$value['id'] = get_option( $value['id'] ); }
}
?>
<?php get_header() ?>
<div id="container">
<div id="content">
<?php thematic_navigation_above();?>
<?php get_sidebar('index-top') ?>
<?php thematic_above_indexloop() ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="title">
<center><img src="/images/post-sep.png"></center>
<h2><a>"><?php the_title(); ?></a> | <?php the_time('F j, Y') ?></h2>
<span></span>
</div>
<!-- entry start -->
<div class="entry">
<?php the_content(''); ?>
</div>
<!-- entry end -->
<p class="postmetadata center">
<?php the_tags('Tags: ', ', ', ''); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
</p>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
</div>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php get_search_form(); ?>
<?php endif; ?>
<?php thematic_below_indexloop() ?>
<?php get_sidebar('index-bottom') ?>
<?php thematic_navigation_below();?>
</div><!-- #content -->
</div><!-- #container -->
<?php thematic_sidebar() ?>
<?php get_footer() ?>
TIA