<?php if ( get_the_content() ) : ?>
<div class="full">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
...
</div>
<?php else : ?>
<div class="empty">
<h2><?php the_title(); ?></h2>
...
</div>
<?php endif; ?>