<!-- th:switch / th:case -->
<span th:switch="${student.letterGrade}">
<span th:case="'A+'">🏆 Excellent</span>
<span th:case="'A'">⭐ Excellent</span>
<span th:case="*">Default case</span> <!-- default -->
</span>
<!-- th:if / th:unless -->
<span th:if="${student.grade >= 50}">Passed</span>
<span th:unless="${student.grade >= 50}">Failed</span>
<!-- th:style – inline dynamic CSS -->
<div th:style="'width: ' + ${student.grade} + '%;'"></div>