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