3

Can you please help me to convert this JSTL tag to a JSTL ternary

<body
  <c:choose>
    <c:when test="${wcmMode.author}">class="author"</c:when>
    <c:otherwise>class="${page.class}"</c:otherwise>
  </c:choose>
>
Florent
  • 12,310
  • 10
  • 49
  • 58
Morais
  • 801
  • 2
  • 10
  • 15

1 Answers1

3

It's dead simple:

<body class="${ wcmMode.author ? 'author' : page.class }">
Florent
  • 12,310
  • 10
  • 49
  • 58