šablona/stránka.xsl
changeset 12 3719b121c3c4
parent 11 78a8dd1eeb2b
child 15 cfb2fc0ca242
--- a/šablona/stránka.xsl	Sun Apr 03 20:39:10 2011 +0200
+++ b/šablona/stránka.xsl	Sun Apr 03 23:15:36 2011 +0200
@@ -29,21 +29,31 @@
 				<xsl:apply-templates select="$konfigurace/g:web/g:css"/>				
 			</head>
 			<body>
-				<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví.inc')))/g:stránka/h:text/node()"/>			
-				<h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
-				<xsl:apply-templates select="g:stránka/h:text/node()"/>
-				<ul id="nabídka">
-					<xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]">
-						<xsl:sort select="empty(./g:stránka/g:pořadí)"/>
-						<xsl:sort select="./g:stránka/g:pořadí"/>
-						<li>
-							<xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
-							<xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/>
-							<a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
-						</li>
-					</xsl:for-each>
-				</ul>
-				<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí.inc')))/g:stránka/h:text/node()"/>				
+				<div id="tělo">
+					<div id="záhlaví">
+						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'záhlaví.inc')))/g:stránka/h:text/node()"/>
+					</div>
+					<div id="vnitřek">
+						<h1><xsl:value-of select="g:stránka/g:nadpis"/></h1>
+						<ul id="nabídka">
+							<xsl:for-each select="collection('../vstup/?select=*.xml')[g:stránka/g:pořadí]">
+								<xsl:sort select="empty(./g:stránka/g:pořadí)"/>
+								<xsl:sort select="./g:stránka/g:pořadí"/>
+								<li>
+									<xsl:variable name="xmlSoubor" select="tokenize(document-uri(.), '/')[last()]"/>
+									<xsl:variable name="xhtmlSoubor" select="replace($xmlSoubor, '.xml', '.xhtml')"/>
+									<a href="{fn:encode-for-uri($xhtmlSoubor)}"><xsl:value-of select="./g:stránka/g:nadpis"/></a>
+								</li>
+							</xsl:for-each>
+						</ul>
+						<div id="text">
+							<xsl:apply-templates select="g:stránka/h:text/node()"/>
+						</div>
+					</div>
+					<div id="zápatí">
+						<xsl:apply-templates select="document(fn:encode-for-uri(concat($vstup, 'zápatí.inc')))/g:stránka/h:text/node()"/>
+					</div>
+				</div>
 			</body>
 		</html>
 	</xsl:template>