Well I was wondering if there was a tag that automatically added that information. This is what I have right now but it screws up my breadcrumb navigation:
<?php global $post;
$the_newest = get_posts('numberposts=1'); ?>
<?php foreach($the_newest as $post) : setup_postdata($post); ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_time('F jS, g:i a') ?></a>
<?php endforeach; ?>