mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
<xsl:template name="playlist">
|
|
<xsl:if test="playlist/*">
|
|
<h4>Playlist</h4>
|
|
<div class="playlist-container">
|
|
<table class="table-block">
|
|
<thead>
|
|
<tr>
|
|
<th>Album</th>
|
|
<th width="10%">Track</th>
|
|
<th>Creator</th>
|
|
<th width="33%">Title</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<xsl:for-each select="playlist/trackList/track">
|
|
<tr>
|
|
<td><xsl:value-of select="album" /></td>
|
|
<td><xsl:value-of select="trackNum" /></td>
|
|
<td><xsl:value-of select="creator" /></td>
|
|
<td><xsl:value-of select="title" /></td>
|
|
</tr>
|
|
</xsl:for-each>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|