pen one
07/16/2021, 7:27 PM${.now?string('MMMM')} ${.now?string('yyyy')}
What would the correct way to be able to add the current month and year (ex. July 2021)?David B
07/18/2021, 10:06 PM?string("format")
seems to be a historical version.
see freemarker built-ins for date values:
The desired format can be specified likeMaybe apostrophes don't work? Try:or?string.format
(or the historical equivalent,?string["format"]
).?string("format")
${.now?string.MMMM} ${.now?string.yyyy}