フリーマーカーにand(&&)を含めることは可能ですか、それともネストされたifを使用する必要がありますか?
<#if object?exists >
</#if>
フリーメーカーでは、&&を論理演算子として使用できます。論理演算を参照してください
例えば
<#if x < 12 && color = "green">
We have less than 12 things, and they are green.
</#if>
<#if !hot> <#-- here hot must be a boolean -->
It's not hot.
</#if>
OR論理演算子を使用できます
<#if color == "blue" || color == "green"> 12個未満のものがあり、それらは緑色です。