</div>
</xsl:template>
+<xsl:template name="person-name">
+ <xsl:param name="file" select="''"/>
+ <xsl:value-of select="document(concat('../xml/people/',$file,'.xml'))/person/name"/>
+ <xsl:value-of select="' '"/>
+ <xsl:value-of select="document(concat('../xml/people/',$file,'.xml'))/person/surname"/>
+</xsl:template>
+
</xsl:stylesheet>
<link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<xsl:for-each select="site">
<li>
<a href="sites/{@file}.html">
- <xsl:value-of select="@file"/>
+ <xsl:value-of select="document(concat('../xml/sites/',@file,'.xml'))/site/name"/>
</a>
</li>
</xsl:for-each>
<em>
<a href="people/{who/@file}.html">
<div class="small">
- <xsl:value-of select="$who/name"/>
- <xsl:text> </xsl:text>
- <xsl:value-of select="$who/surname"/>
+ <xsl:call-template name="person-name">
+ <xsl:with-param name="file" select="who/@file"/>
+ </xsl:call-template>
</div>
</a>
</em>
<link rel="stylesheet" href="../../../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<link rel="stylesheet" href="../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<link rel="stylesheet" href="../../../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<link rel="stylesheet" href="../../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<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>
<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>
<link rel="stylesheet" href="../../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>
<link rel="stylesheet" href="../../style/mowgli.css" type="text/css"/>
</head>
<body>
- <xsl:apply-templates/>
+ <blockquote>
+ <xsl:call-template name="head"/>
+ <xsl:apply-templates/>
+ <xsl:call-template name="foot"/>
+ </blockquote>
</body>
</html>
</xsl:template>