1
0
Fork 0

Continue with XSL stylesheet. It's not rendering correctly atm.

This commit is contained in:
Starbeamrainbowlabs 2016-07-06 20:23:56 +01:00
parent 381644604f
commit 7b5c02bb0c
1 changed files with 5 additions and 1 deletions

View File

@ -1,11 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform version="1.0" xmlns:xsl="http://w3.org/1999/XSL/Transform">
<xsl:output method="html" encoding="utf-8" indent="yes" />
<xsl:template match="/">
<xsl:text disable-output-escaping='yes'>&lt;!DOCTYPE html&gt;</xsl:text>
<html>
<head>
<title>
<title><xsl:value-of select="CurrentDirectory" /> - GalleryShare</title>
</head>
<body>
<h1><xsl:value-of select="CurrentDirectory" /> - GalleryShare</h1>
</body>
</html>
</xsl:template>
</xsl:transform>