tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

reqLine.xsl (393B)


      1 <?xml version="1.0" encoding="ISO-8859-1"?>
      2 
      3 <xsl:stylesheet version="1.0"
      4  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      5  <xsl:param name="static" select="document(//static)"/>
      6  <xsl:template match="/">
      7    <xsl:for-each select="$static">
      8      <html>
      9        <body>
     10          <h1>hello world</h1>
     11        </body>
     12      </html>
     13    </xsl:for-each>
     14  </xsl:template>
     15 </xsl:stylesheet>