HTML
Add: " #date " in the footer for the auto updating date. Type a space, then highlight the space, make it a link and add the external link to be #date.
CSS
// Removes Underline from Links in Footer
#preFooter a, #footer a { border: 0px solid red !important;}
JS - Code Injection - Footer
<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<!-- BEGIN AUTO UPDATING DATE -->
<script>
$("a[href='#date']").html(new Date().getFullYear());
</script>
<!-- END AUTO UPDATING DATE -->