summaryrefslogtreecommitdiffhomepage
path: root/docs/xslt/module.xslt
blob: c98ca697d831bda8baa5c04d3cb8b44439924831 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

   <xsl:output indent="no" encoding="utf-8" method="html"/>

   <xsl:strip-space elements="*"/>

   <xsl:param select="'../xml'" name="XML"/>

   <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"/> 
            </title>
    
         </head>
    
         <body>

            <xsl:apply-templates/>
    
         </body>
    
      </html>
   </xsl:template>
</xsl:stylesheet>