diff options
Diffstat (limited to 'data/starthere/section.xsl')
-rw-r--r-- | data/starthere/section.xsl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/data/starthere/section.xsl b/data/starthere/section.xsl index 21075a990..a734ce708 100644 --- a/data/starthere/section.xsl +++ b/data/starthere/section.xsl @@ -10,7 +10,7 @@ <xsl:template match="section"> <html> <head> - <title><xsl:value-of select="@name"/></title> + <xsl:apply-templates/> <style type="text/css"> body { margin-left: 150; @@ -57,6 +57,10 @@ </html> </xsl:template> +<xsl:template match="pagetitle"> + <title><xsl:apply-templates/></title> +</xsl:template> + <xsl:template match="content"> <div class="body"> <xsl:apply-templates/> |