topical media & game development
professional-ajax-04-XSLT-Best-Picks-Revisited-books.xsl / xsl
<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" indent="yes" />
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="book">
<div class="bookContainer">
<xsl:variable name="isbn" select="@isbn" />
<xsl:variable name="title" select="title" />
<img class="bookCover" alt="{isbn}.png" />
<div class="bookContent">
<h3><xsl:value-of select="isbn" />
<div class="bookPublisher"><xsl:value-of select="publisher" /></div>
</div>
</div>
</xsl:template>
</xsl:stylesheet>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.