]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/project.xsl
ocaml 3.09 transition
[helm.git] / helm / mowgli / home / xsl / project.xsl
index ba1f7a9bd9642d0aee5ac3b23c72f198ca1cac54..70ad6aebc65ecadc101e3cd2ce2206845ce48aaa 100644 (file)
@@ -3,17 +3,17 @@
 <xsl:stylesheet version="1.0"
                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
-<xsl:output method="html"/>
+<xsl:import href="common.xsl"/>
+
+<xsl:output method="xml"/>
 
 <xsl:template match="/">
  <html>
   <head>
    <title>The Project</title>
-   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-   <link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
   </head>
   <body>
-   <xsl:apply-templates/>
+    <xsl:apply-templates/>
   </body>
  </html>
 </xsl:template>
  </p>
  <p>
   <xsl:text>Operative Commencement Date: </xsl:text>
-  <xsl:value-of select="operative_commencement_of_contract"/>
+  <xsl:call-template name="print_date">
+   <xsl:with-param name="date" select="operative_commencement_of_contract"/>
+  </xsl:call-template>
  </p>
+ <br/>
+  <p><xsl:text>More about the Proposal:</xsl:text></p>
+  <xsl:copy-of select="proposal/*"/>
 </xsl:template>
 
 </xsl:stylesheet>