Basically i am putting some if elses for my array.
{if $array| count eq 0 || $array| count lt 10}
<p>equal to 0, less than 10</p>
{/if}
{if $array| count gte, ge 10}
<p>greater than or equal to 10</p>
{else}
<p>blah</p>
{/if}
Which is not working fine. So what could be the problem?