How to make only posts show date

There are two options:

  1. Create a separate single.php for posts and show the date there only.
  2. Use a condition:
if ( is_single() )
{
?><div class="date"><strong><?php the_date(); ?></strong></div><?php
}