<?php get_header(); ?>
<div class="span-14 box id="content">
<?php if (have_posts()) : ?>
<?php $i == 0; ?>
<?php while (have_posts()) : the_post(); $i++; ?>
<div <?php if(function_exists('post_class')) : ?><?php post_class(); ?><?php else : ?>class="post post-<?php the_ID(); ?>"<?php endif; ?>>
<h2 class="entry"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="entry" id="post">
<?php include (TEMPLATEPATH . '/apps/video.php'); ?>
<p class="attachment"><a href="<?php echo wp_get_attachment_url($post->ID); ?>"><?php echo wp_get_attachment_image( $post->ID, 'small' ); ?></a></p>
<div class="clear"></div>
<?php the_content(); ?>
</div>
<div class="clear"></div>
<p class="postmetadata"><?php the_time('M d, Y') ?> | Categories: <?php if (the_category(', ')) the_category(); ?> <?php if (get_the_tags()) the_tags('| Tags: '); ?> | <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?> <?php edit_post_link('Edit', '| ', ''); ?> </p>