diff options
Diffstat (limited to 'docs/xslt/module.xslt')
-rw-r--r-- | docs/xslt/module.xslt | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/docs/xslt/module.xslt b/docs/xslt/module.xslt index c98ca697d..b9e041ce9 100644 --- a/docs/xslt/module.xslt +++ b/docs/xslt/module.xslt @@ -10,25 +10,27 @@ <xsl:variable select="/module/@link" name="LINK"/> <xsl:include href="directive.xslt"/> + <xsl:include href="content.xslt"/> - + <xsl:template match="/module"> - + <html> <head> - + <title> - <xsl:value-of select="@title"/> + <xsl:value-of select="@title"/> </title> - + </head> - + <body> <xsl:apply-templates/> - + </body> - + </html> </xsl:template> -</xsl:stylesheet>
\ No newline at end of file + +</xsl:stylesheet> |