/ template / partial / now-playing.ctml
now-playing.ctml
 1  <h2>Now Playing</h2>
 2  <c:if test="stats">
 3      <c:then>
 4          <c:using value="stats">
 5              <!--<p>Artist: <span>The Void</span></p>-->
 6              <p>Track: <span lquery="(text title)">The Void - Silence</span></p>
 7              <p>Listeners: <span lquery="(text listeners)">1</span></p>
 8          </c:using>
 9      </c:then>
10      <c:else>
11          <c:if test="connection-error">
12              <c:then>
13                  <div class="message error">
14                       <span>There was an error trying to get information from stream.</span>
15                  </div>
16              </c:then>
17          </c:if>
18          <p>Track: <span>NA</span></p>
19          <p>Listeners: <span>NA</span></p>
20      </c:else>
21  </c:if>