Forgot to mention that I found that error and already omitted it. Still getting the same T_ELSE error.
Here is my index.php, if this helps:
<?php
/**
* @package WordPress
* @subpackage BlahBlah
*/
get_header(); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
<h2><span class="rtfb"><?php if (function_exists('tweetmeme')) echo tweetmeme();?><?php //echo facebook_sharecount(); ?></span><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="date"><?php the_time('F jS, Y') ?></p>
<?php the_content('Read the rest of this entry »'); ?>
<div class="postFooter">
<p><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div><!-- postFooter -->
</div><!-- post post post -->
<?php endwhile; ?>
<?php SEO_pager() ?>
<?php else : ?>
<h2>Not Found</h2>
<p>Sorry, but you are looking for something that isn't here.</p>
<div id="search">
<?php get_search_form(); ?>
</div><!-- search -->
<?php endif; ?>
</div><!-- contentMain -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
I'm trying to insert this if statement between the endwhile and the call to seo_pager.