<?xml version="1.0" encoding='ISO-8859-1'?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="encuesta">
<xsl:processing-instruction name="cocoon-format">type="text/html"</xsl:processing-instruction>
<html>
 <head>
  <title>Encuesta, procesada con encuesta1-lynx.xsl</title>
 </head>
 <body>

 <big><big>Encuesta chuli (para Lynx)</big></big>
	<ul>
        <xsl:apply-templates/>
        </ul>
   <p align="center">
    <font size="-1">Copyright &#169; 1999-2001 <a href="http://geneura.ugr.es/~jmerelo">JJ Merelo</a>.<br/></font>
   </p>
 </body>
</html>
</xsl:template>

<xsl:template match="cuestion">
        <li><b> <xsl:value-of select="pregunta"/></b>
           <ul><xsl:apply-templates select='respuesta'/></ul>
        </li>
</xsl:template>

<xsl:template match='respuesta'>
        <li><xsl:value-of select="."/></li>
</xsl:template>
</xsl:stylesheet>
