File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/sweet-blossoms/index.php
<?php get_header(); ?>
<!-- content ................................. -->
<div id="main">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
	<div <?php post_class('main'); ?>>
		<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
		<?php ( $post->post_excerpt != "") ? the_excerpt() : the_content(); ?>
		<p class="info"><?php if ( $post->post_excerpt != "" ) { ?><a href="<?php the_permalink(); ?>" class="more"><?php _e( 'Continue Reading', 'sweet-blossoms'); ?></a><?php } ?>
   			<?php comments_popup_link( __( 'Add a comment', 'sweet-blossoms' ), __( '1 comment', 'sweet-blossoms' ), __( '% comments', 'sweet-blossoms' ) ); ?>
   			<em class="date"><?php the_time( get_option( 'date_format' ) ); ?><!-- at <?php the_time()  ?>--></em>
   			<!--<em class="author"><?php the_author(); ?></em>-->
   			<?php edit_post_link( __( 'Edit', 'sweet-blossoms' ), '<span class="editlink">', '</span>' ); ?>
   			<br /> <?php the_tags( __( 'Tags:' , 'sweet-blossoms' ).' ', ', ', '<br />'); ?>
   		</p>
		<div style="padding:20px 0px 0px 0px;"></div>
		<img src="<?php bloginfo('stylesheet_directory'); ?>/images/divider.gif" alt="" />
		<div style="padding:20px 0px 0px 0px;"></div>
	</div>
<?php endwhile; ?>
	<table width="100%" cellpadding="0" cellspacing="0">
		<tr>
			<td width="120" align="left"><?php next_post_link( '%link', '%title <span class="meta-nav">' . _x( 'Previous Posts', 'sweet-blossoms' ) . '</span>' ); ?></td>
			<td width="60"></td>
			<td width="120" align="right"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( 'Next Posts', 'sweet-blossoms' ) . '</span> %title' ); ?></td>
</tr>
	</table>
<?php else : ?>
	<h2><?php _e( 'Not Found', 'sweet-blossoms' ); ?></h2>
	<p><?php _e( "Sorry, but you are looking for something that isn't here.", "sweet-blossoms" ); ?></p>
<?php endif; ?>
</div>
<!-- /content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>