github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-147.xsl (about)

     1  <?xml version="1.0"?>
     2  <xsl:stylesheet version="1.0"
     3                  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     4                  
     5  <xsl:import href="./bug-147-3.imp"/>
     6  <xsl:import href="./bug-147-2.imp"/>
     7  <xsl:import href="./bug-147-1.imp"/>
     8  <xsl:import href="./bug-147-4.imp"/>
     9  
    10  
    11  <xsl:output method="html"/>
    12  
    13  
    14  <xsl:template match="/">
    15    <html>
    16      <head></head>
    17      <body><xsl:apply-templates select="/dokument"/></body>
    18    </html>
    19  </xsl:template>
    20  
    21  
    22  <xsl:template match="dokument">
    23    <div>
    24      <xsl:apply-imports/>
    25      <xsl:apply-templates select="navigation[@location='bottom']"/>
    26    </div>
    27  </xsl:template>
    28  
    29  </xsl:stylesheet>