Hey,
I'm skinning a template for wordpress but when I loaded it everything worked out except a parse error ($end) on line 426. I can't figure out what is wrong with it, so here is the last couple of lines of my code...
Code:
<div id="userbar"><?php include (TEMPLATEPATH . '/searchform.php'); ?> <font color="#333333" size="2">You are viewing <b>home page</b>!</font></form></div>
<div id="content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<font class="title"><a href="<?php the_permalink() ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark" class="title"><?php the_title(); ?></a></font><fon class="title2">para; Posted <a href="<?php the_permalink() ?>" title="Permalink to <?php the_title(); ?>" rel="permalink"><?php the_time('d F Y'); ?></a> § <?php the_category(', ') ?> <?php edit_post_link('Edit', ' √ ', ''); ?></font>
<div class="post-entry">
<?php the_content('<span class="more-link">Continue Reading »</span>'); ?>
<?php link_pages('<p class="paged-link">Pages: ', '</p>', 'number'); ?>
</div><!-- END POST-ENTRY -->
<?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?>
<!-- <?php trackback_rdf(); ?> -->
</div><!-- END POST -->
<?php endwhile; ?>
Thanks for any help!
HTMLGuy