And once again:
to remove the date on pages take a look at content.php, line 5, and add an if construct:
<?php if ( get_post_type() != 'page' ) : ?>
<p><?php echo get_the_date(); ?> | <?php if ( count( get_the_category() ) ) : printf( get_the_category_list( ', ' ) ); endif; ?> | <a href="<?php echo get_permalink(); ?>"><?php _e( 'Permalink ', 'lenora' ); ?></a> </p>
<?php endif; ?>