1.1 --- a/šablona/stránka.xsl Sun Apr 03 20:39:10 2011 +0200
1.2 +++ b/šablona/stránka.xsl Sun Apr 03 23:15:36 2011 +0200
1.3 @@ -29,21 +29,31 @@
1.4 <xsl:apply-templates select="$konfigurace/g:web/g:css"/>
1.5 </head>
1.6 <body>
1.7 - <xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví.inc')))/g:stránka/h:text/node()"/>
1.8 - <h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
1.9 - <xsl:apply-templates select="g:stránka/h:text/node()"/>
1.10 - <ul id="nabídka">
1.11 - <xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]">
1.12 - <xsl:sort select="empty(./g:stránka/g:pořadí)"/>
1.13 - <xsl:sort select="./g:stránka/g:pořadí"/>
1.14 - <li>
1.15 - <xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
1.16 - <xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/>
1.17 - <a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
1.18 - </li>
1.19 - </xsl:for-each>
1.20 - </ul>
1.21 - <xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí.inc')))/g:stránka/h:text/node()"/>
1.22 + <div id="tělo">
1.23 + <div id="záhlaví">
1.24 + <xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví.inc')))/g:stránka/h:text/node()"/>
1.25 + </div>
1.26 + <div id="vnitřek">
1.27 + <h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
1.28 + <ul id="nabídka">
1.29 + <xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]">
1.30 + <xsl:sort select="empty(./g:stránka/g:pořadí)"/>
1.31 + <xsl:sort select="./g:stránka/g:pořadí"/>
1.32 + <li>
1.33 + <xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
1.34 + <xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/>
1.35 + <a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
1.36 + </li>
1.37 + </xsl:for-each>
1.38 + </ul>
1.39 + <div id="text">
1.40 + <xsl:apply-templates select="g:stránka/h:text/node()"/>
1.41 + </div>
1.42 + </div>
1.43 + <div id="zápatí">
1.44 + <xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí.inc')))/g:stránka/h:text/node()"/>
1.45 + </div>
1.46 + </div>
1.47 </body>
1.48 </html>
1.49 </xsl:template>