<?xml version="1.0"?>

<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  <xsl:template match="/">

    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/xml; charset=Shift_JIS"/>
        <title>Haibane Shrine :: Character Guide</title>
        <link rel="stylesheet" type="text/css" href="template.css"/>
      </head>
      <body>	 
        <h3>Haibane Shrine :: Character Guide</h3>

       <div class="post">
        <xsl:for-each select="characters/character"> 
          <table border="1">
            <tr>
              <td height="110" width="110">
                <center>
                  <img><xsl:attribute name="src">
                    http://www.personal.psu.edu/rwa118/haibane/characters/<xsl:value-of select="char_image" />
                  </xsl:attribute></img>
                </center>
              </td>
              <td>
                <h2 class="subject"><xsl:value-of select="name"/></h2>
                <xsl:value-of select="name"/> <xsl:value-of select="katakana"/> (<xsl:value-of select="kanji"/>)
                <Br />
                <xsl:value-of select="description"/>
                <Br /><Br />
                <xsl:value-of select="name_meaning"/>
              </td>
            </tr>
           </table>
           <Br/>
         </xsl:for-each>
         Note: The names go Romanization Katakana (Kanji)
       </div>

      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

