aboutsummaryrefslogtreecommitdiffstats
path: root/data/starthere/section.xsl
blob: 6b349c626aaf16dba9e9bca6b9e90d5322c52350 (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
<?xml version="1.0"?>
<xsl:stylesheet
        xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
        version="1.0">

<!-- root rule -->
<xsl:template match="/">
   <xsl:apply-templates/>
</xsl:template>

<!-- main rule for document element -->
<xsl:template match="section">
<html>
  <head>
  </head>
  <body>
    <xsl:apply-templates/>
  </body>
</html>
</xsl:template>

</xsl:stylesheet>