Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<wml>
<card id="card1" title="Titles">
<p>
<xsl:for-each select="Titles/TITLES" >
<b><i><xsl:value-of select="@title"/></i></b><br/>
PubID:<xsl:value-of select="@pub_id"/><br/>
Price:$$<xsl:value-of select="@price"/><br/>
<br/>
</xsl:for-each>
</p>
</card>
</wml>
</xsl:template>
</xsl:stylesheet>