Solved
How to implement Switch statement Using sightly
For example, in jstl the switch statement like below
<c:choose><c:when test="${salary <= 0}"> Salary is very low to survive.</c:when><c:when test="${salary > 1000}"> Salary is very good.</c:when><c:otherwise>No comment sir...</c:otherwise></c:choose>
Need to convert the above switch statement to sightly. Please help me in this