<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:p="http://www.aadl.org"
version="1.0">
<xsl:template match="/">
<html>
<head><title>AADL example!</title>
<link rel="stylesheet" 
      type="text/css"
      href="http://www.superpatron.com/aadlexample.css" />
</head>
<body>
<xsl:for-each select="/p:Record">
<div class='hreview x-wpsb-review-book'>
<span class='callnum'><xsl:value-of select="callnum"/></span><br/>
<br/>
<span class='au'><xsl:value-of select="author"/></span><br/>
<br/>
<span class='btitle'><xsl:value-of select="title"/></span>.
<span class='au'><xsl:value-of select="author"/></span><br/>
<br/>
<span class='pub'><xsl:value-of select="pubinfo"/></span><br/>
ISBN: <span class='Z3988 isbn'
  title='ctx_ver_fmt=Z39.88-2004&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;isbn={isbn}'><xsl:value-of select="isbn"/></span><br/>
<br/>
<span class='avail'><xsl:value-of select="avail"/></span>
</div>
</xsl:for-each>
</body></html>
</xsl:template>
</xsl:stylesheet>
