What is the best way to add a dynamic date (year) in a Play Framework view. I want to add a copyright at the bottom of the page, but I do not want to hard code 2011.
<p> © 2011 </p>
How can I get 2011 to always be the current year?
|
What is the best way to add a dynamic date (year) in a Play Framework view. I want to add a copyright at the bottom of the page, but I do not want to hard code
How can I get 2011 to always be the current year? |
|||
|
|
|
try this
It creates the current date, and formats it (using the Format JavaExtension for the Date object). |
|||