<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:import href="common.xsl" />
<xsl:output method="html" encoding="utf-8"
doctype-public="-//W3C//DTD HTML 4.01//EN" doctype-system="http://www.w3.org/TR/html4/strict.dtd"/>
<xsl:template match="Category">
<p>Our database contains the answers to the following frequent questions in this category:</p>
<ul>
<xsl:apply-templates />
</ul>
<p><a href="categories.asp">Back to the categories listing</a></p>
</xsl:template>
<xsl:template match="Question">
<li><a href="answer.asp?question={@id}"><xsl:call-template name="copyRich" /></a></li>
</xsl:template>
<xsl:template name="pageTitle">Frequently Asked Questions: <xsl:value-of select="//Category/@name" /></xsl:template>
</xsl:stylesheet>