Small cleanup: Drop not necessary statements
[TortoiseGit.git] / doc / xsl / fa / htmlsingle.xsl
blobbb2d6a6226ca0cc1a2a5ec27a22d4f6556226e6e
1 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3 <xsl:import href="../htmlsingle.xsl"/>
5 <xsl:param name="htmlhelp.encoding" select="'utf-8'"/>
6 <xsl:param name="chunker.output.encoding" select="'utf-8'"/>
8 <!-- ==================================================================== -->
9 <xsl:template name="chunk-element-content">
10 <xsl:param name="prev"/>
11 <xsl:param name="next"/>
12 <xsl:param name="nav.context"/>
13 <xsl:param name="content">
14 <xsl:apply-imports/>
15 </xsl:param>
17 <xsl:call-template name="user.preroot"/>
19 <html dir='RTL'>
20 <xsl:call-template name="html.head">
21 <xsl:with-param name="prev" select="$prev"/>
22 <xsl:with-param name="next" select="$next"/>
23 </xsl:call-template>
25 <body>
26 <xsl:call-template name="body.attributes"/>
27 <xsl:call-template name="user.header.navigation"/>
29 <xsl:call-template name="header.navigation">
30 <xsl:with-param name="prev" select="$prev"/>
31 <xsl:with-param name="next" select="$next"/>
32 <xsl:with-param name="nav.context" select="$nav.context"/>
33 </xsl:call-template>
35 <xsl:call-template name="user.header.content"/>
37 <xsl:copy-of select="$content"/>
39 <xsl:call-template name="user.footer.content"/>
41 <xsl:call-template name="footer.navigation">
42 <xsl:with-param name="prev" select="$prev"/>
43 <xsl:with-param name="next" select="$next"/>
44 <xsl:with-param name="nav.context" select="$nav.context"/>
45 </xsl:call-template>
47 <xsl:call-template name="user.footer.navigation"/>
48 </body>
49 </html>
50 <xsl:value-of select="$chunk.append"/>
51 </xsl:template>
53 </xsl:stylesheet>