Logo

More templates for push

<xsl:template match="artist">
  <H1 class="emph1"> <xsl:value-of select="."/></H1>
</xsl:template>
<xsl:template match="title">
  <p class="01"><xsl:value-of select="."/></p>
</xsl:template>
<xsl:template match="label">
  <p class="02">Label:<xsl:value-of select="."/> </p>
</xsl:template>
  ...
<xsl:template match="filed">
  <p class="05">Stored at:<xsl:value-of select="."/></p>
</xsl:template>
<xsl:template match="playlist">
  <p class="06">Playlist:</p>
  <ul>
    <xsl:for-each select="work">
      <li style="..."><xsl:value-of select="."/></li>
    </xsl:for-each>
  </ul>
</xsl:template>

Ivan Herman, W3C Head of Offices16 July, 200213 (32)