Future proof your footer's copyright date with the current year

Michael Lee 🍕 - Jan 1 '18 - - Dev Community

It's a new year and one of the quickest ways for your site to seem dated is by not updating the copyright year in the footer.

To combat this, the easiest way is to have your site generate the current year for you.

Here are a few code snippets in a few select languages.

JavaScript

<script type="text/javascript">
  document.write(new Date().getFullYear());
</script>

Ruby

<%= Time.now.year %>

PHP

<?php echo date("Y"); ?>

Ember.js

// You'd most likely want to create a component to handle this. In the component's JS file, create a property like `currentYear`
...
currentYear: new Date().getFullYear(),
...
// Then in your component's handlebars file, reference the property like this.
<footer>&copy; 2014 - {{currentYear}}</footer>

Jekyll

Future proofing a Jekyll project's copyright is a little more manual, but here are step by step instructions on future-proofing your Jekyll copyright date.


If you have any other examples, feel free to leave it in a comment and I'll update this post.


Originally posted on Michael Lee

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player