Skip to content

Instantly share code, notes, and snippets.

@planetsizebrain
Created April 11, 2017 10:06
Show Gist options
  • Save planetsizebrain/a9dc41e72f3fba2a1bd84caef0741ac5 to your computer and use it in GitHub Desktop.
Save planetsizebrain/a9dc41e72f3fba2a1bd84caef0741ac5 to your computer and use it in GitHub Desktop.
Liferay Freemarker datetime format with 4-digit year
<#setting time_zone=timeZone.ID>
<#setting locale=locale.toString()>
<#setting datetime_format="MM/dd/yyyy">
<ul>
<#list entries as entry>
<li><li>${entry.title} - ${entry.modifiedDate?datetime}</li></li>
</#list>
</ul>
@caneta
Copy link

caneta commented Apr 19, 2017

Ok, not very confortable if I have to manage a portal supporting 30 different languages, but I got the point.
Thank you!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment