FreeMarker Current Date Comparison

freemarker

Solution

From FreeMarker 2.3.17 on you can use the new special variable `.now`:

[#assign foo = .now > yesterday?datetime]

Problem

Is it possible to do date comparisons against the current date in a freemarker template without passing the current date into the template?

Original source