]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/mowgli/home/xsl/consortium.xsl
- main page now generated automatically
[helm.git] / helm / mowgli / home / xsl / consortium.xsl
index 09ee0d8d4395658a9a9fd35312c9c27a2446e242..f42274f9b6a9d242b2b40c7214b3fa088b25016b 100644 (file)
@@ -3,6 +3,8 @@
 <xsl:stylesheet version="1.0"
                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
+<xsl:import href="common.xsl"/>
+
 <xsl:output method="html"/>
 
 <xsl:template match="/">
    <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>
   <xsl:for-each select="site">
    <li>
     <a href="sites/{@file}.html">
-     <xsl:value-of select="@file"/>
+     <xsl:variable name="site" select="document(concat('../xml/sites/',@file,'.xml'))/site"/>
+    <xsl:choose>
+     <xsl:when test="$site/name">
+      <xsl:value-of select="$site/name"/>
+     </xsl:when>
+     <xsl:otherwise>
+      <xsl:value-of select="$site/subsite/name"/>
+     </xsl:otherwise>
+    </xsl:choose>
     </a>
    </li>
   </xsl:for-each>