	  	<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <div class="box">
          <?php $showt = get_post_meta($post->ID, 'notitle', true); ?>
          <?php if (!$showt) : ?>
			<h2><?php the_title(); ?></h2>
		  <div id="post-<?php the_id() ?>" <?php post_class(array('boxinnr')); ?>>
			<?php the_content(); ?>
			</div>
		  <?php else : ?>
		  <?php the_content(); ?>
		  <?php the_tags(); ?>
		  <?php wp_link_pages(); ?>
		  <?php endif; ?>
          <!--box--> 
		  
		  <?php
			comments_template( '', false ); 
			paginate_comments_links();
			?>
		  
        </div>
        <!--contentlt--> 
		
		<?php endwhile; 
else: // No content ?>
		<?php endif; ?>
