blob: d457e11be48d6d9b94cfb81beb91fe67d83e8328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
|