Is there a simple way in Drupal to display the last modified date for a node as part of the node.tpl.php file?
If you put this code in the node.tpl.php file it will show the date of the last change to the node:
<?php
echo format_date($node->changed);
?>
with whatever HTML you want around it.