aboutsummaryrefslogtreecommitdiff
path: root/static/index.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'static/index.xsl')
-rw-r--r--static/index.xsl16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/index.xsl b/static/index.xsl
new file mode 100644
index 0000000..d457e11
--- /dev/null
+++ b/static/index.xsl
@@ -0,0 +1,16 @@
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+ <xsl:output method="html" indent="yes" />
+ <xsl:include href="templates.xsl" />
+
+ <xsl:param name="content">
+ <div class="nav-hover-head">
+ <img alt="smiling" src="/images/smiling-head.png" />
+ </div>
+ </xsl:param>
+
+ <xsl:template match="/">
+ <xsl:call-template name="page">
+ <xsl:with-param name="content" select="$content" />
+ </xsl:call-template>
+ </xsl:template>
+</xsl:stylesheet>