Hi,
FreeMarker templates support an if-statement with the following syntax
<#if hot>
It's hot.
</#if>
I've looked in the documentation and can't find any support for an if-else statement. Of course I could achieve the same result with:
<#if hot>
It's hot.
</#if>
<#if !hot>
It's not hot.
</#if>
Is support for if-else provided by FreeMarker?
Cheers, Don