]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/site.xsl
- main page now generated automatically
[helm.git] / helm / mowgli / home / xsl / site.xsl
index f7568a823ba4ebef55c50c40bc19c807b8225a14..d488bacdcea2ac41080d2992608c4caf5b41efc0 100644 (file)
    <link rel="stylesheet" href="../../style/mowgli.css" type="text/css"/>
   </head>
   <body>
-   <xsl:apply-templates/>
+    <xsl:call-template name="head">
+     <xsl:with-param name="path_to_top" select="'..'"/>
+    </xsl:call-template>
+    <xsl:apply-templates/>
+    <xsl:call-template name="foot">
+     <xsl:with-param name="path_to_top" select="'..'"/>
+    </xsl:call-template>
   </body>
  </html>
 </xsl:template>
@@ -47,7 +53,9 @@
    <p>
     <xsl:text>Site responsible: </xsl:text>
     <a href="../people/{responsible/@file}.html">
-     <xsl:value-of select="responsible/@file"/>
+     <xsl:call-template name="person-name">
+      <xsl:with-param name="file" select="responsible/@file"/>
+     </xsl:call-template>
     </a>
     <xsl:text>.</xsl:text>
    </p>
@@ -75,7 +83,9 @@
   <xsl:for-each select="member">
    <li>
     <a href="../people/{@file}.html">
-     <xsl:value-of select="@file"/>
+     <xsl:call-template name="person-name">
+      <xsl:with-param name="file" select="@file"/>
+     </xsl:call-template>
     </a>
    </li>
   </xsl:for-each>