<div class="<?php if(is_single()) {  ?>first post<?php } else { ?>post<?php }  ?> " id="post-<?php the_ID(); ?>">
  <?php if(is_single()) {  ?>
  <div class="comms"> <a href="#comments">
    <?php comments_number('0', '1', '%' );?>
    </a> </div>
  <?php }  ?>
  <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link to','brain')?> <?php the_title_attribute(); ?>">
    <?php if(is_single()) {  ?>
    <? } else {  ?>
    <strong>+</strong>
    <?php } ?>
    <?php the_title(); ?>
    </a> <small>
    <?php _e('By','brain')?>
    <?php the_author_posts_link('nickname'); ?>
    <?php the_time('d F Y'); ?>
    <?php _e('at','brain')?>
    <?php the_time() ?>
    <?php if(function_exists('the_views')) { the_views(); } ?>
    <?php _e('and have','brain')?>
    <?php comments_popup_link(__('No Comments','brain'),__('1 Comment','brain'),__('% Comments','brain')); ?>
    <?php edit_post_link(__('e', '  |  ', '')); ?>
    </small> </h2>
  <div class="entry">
  	<?php if(is_single()) { ?>
    <div class="entryContent">
    <?php } ?>
    <?php the_content(__('Read the rest of this entry  →','brain'));?>
    <?php if(is_single()) { ?>
    </div>
    <?php } ?>
    <?php if(is_single()) { ?>
    <?php wp_link_pages(__('Pages: ','brain'), '', 'number',__('next →','brain'),__('← previous','brain'), '%'); ?>
    <div class="postmeta">
      <ul class="floatR">
        <li class="icon_rss">
          <?php comments_rss_link('RSS 2.0'); ?>
        </li>
        <li class="icon_track">
          <?php if (('open' == $post->ping_status)) { ?>
          <a href="<?php trackback_url(true); ?>" rel="trackback">
          <?php _e('Trackback','brain')?>
          </a>
          <?php } elseif (!('open' == $post->ping_status)) { ?>
          <strong>
          <?php _e('Trackbacks closed','brain')?>
          </strong>
          <?php  } ?>
        </li>
      </ul>
      <ul class="floatL">
        <li class="icon_categories"><strong>
          <?php _e('Under','brain')?>
          :</strong>
          <?php the_category(', ') ?>
        </li>
        <?php if (function_exists('the_tags')) : ?>
        <li class="icon_tags">
          <?php the_tags('<strong>Tags:</strong> ', ', ', '<br />'); ?>
        </li>
        <?php endif; ?>
      </ul>
      <br class="clear" />
    </div>
    <?php }  ?>
  </div>
  <?php if(is_single()) { ?>
  <div class="navPost">
    <div class="alignleft">
      <?php previous_post_link('%link', '' . __('Previous Post') . '', FALSE); ?>
    </div>
    <div class="alignright">
      <?php next_post_link('%link', '' . __('Next Post') . '', FALSE); ?>
    </div>
  </div>
  <?php } ?>
</div>