šablona/stránka.xsl
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 22:06:44 +0200
changeset 136 d5feb9d8ebc3
parent 132 1b16c8828fc0
permissions -rw-r--r--
fix license version: GNU GPLv3
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3 XML Web generátor – program na generování webových stránek
     4 Copyright © 2012 František Kučera (frantovo.cz)
     5 
     6 This program is free software: you can redistribute it and/or modify
     7 it under the terms of the GNU General Public License as published by
     8 the Free Software Foundation, version 3 of the License.
     9 
    10 This program is distributed in the hope that it will be useful,
    11 but WITHOUT ANY WARRANTY; without even the implied warranty of
    12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    13 GNU General Public License for more details.
    14 
    15 You should have received a copy of the GNU General Public License
    16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
    17 -->
    18 <xsl:stylesheet version="2.0"
    19 	xmlns="http://www.w3.org/1999/xhtml"
    20 	xmlns:h="http://www.w3.org/1999/xhtml"
    21 	xmlns:s="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/strana"
    22 	xmlns:k="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/konfigurace"
    23 	xmlns:m="https://trac.frantovo.cz/xml-web-generator/wiki/xmlns/makro"
    24 	xmlns:j="java:cz.frantovo.xmlWebGenerator.Funkce"
    25 	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    26 	xmlns:fn="http://www.w3.org/2005/xpath-functions"
    27 	xmlns:svg="http://www.w3.org/2000/svg"
    28 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
    29 	exclude-result-prefixes="fn h s k m j xs">
    30 	<xsl:output 
    31 		method="xml" 
    32 		indent="yes" 
    33 		encoding="UTF-8"
    34 		doctype-public="-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" 
    35 		doctype-system="http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd"/>
    36 	<xsl:include href="stránka-společné.xsl"/>
    37 	
    38 	<!-- 
    39 		Šablona stránky
    40 		***************
    41 	-->
    42 	<xsl:template match="/">
    43 		<html>
    44 			<head>
    45 				<xsl:if test="$podporaZaostalýchProhlížečů">
    46 					<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
    47 					<xsl:call-template name="varováníRetardaceDlouhé"/>
    48 				</xsl:if>
    49 				<title>
    50 					<xsl:choose>
    51 						<xsl:when test="s:stránka/s:nadpis/text() = $konfigurace/k:web/k:název/text()"><xsl:value-of select="s:stránka/s:nadpis"/></xsl:when>
    52 						<xsl:otherwise><xsl:value-of select="s:stránka/s:nadpis"/> – <xsl:value-of select="$konfigurace/k:web/k:název"/></xsl:otherwise>
    53 					</xsl:choose>
    54 				</title>
    55 				<link title="Novinky (Atom)" href="atom.xml" type="application/atom+xml" rel="alternate"/>
    56 				<link title="Novinky (RSS)"  href="rss.xml"  type="application/rss+xml"  rel="alternate"/>
    57 				<xsl:apply-templates select="$konfigurace/k:web/k:autor/k:jméno"/>
    58 				<xsl:apply-templates select="s:stránka/s:perex"/>
    59 				<xsl:apply-templates select="s:stránka/s:klíčováSlova"/>
    60 				<xsl:apply-templates select="$konfigurace/k:web/k:js"/>
    61 				<xsl:apply-templates select="$konfigurace/k:web/k:css"/>
    62 			</head>
    63 			<body>
    64 				<div id="tělo">
    65 					<xsl:call-template name="vložZáhlaví"/>
    66 					<div id="vnitřek">
    67 						<h1><xsl:value-of select="s:stránka/s:nadpis"/></h1>
    68 						<xsl:call-template name="vložNabídku"/>
    69 						<div id="text">
    70 							<xsl:apply-templates select="s:stránka/h:text/node()"/>
    71 						</div>
    72 					</div>
    73 					<xsl:call-template name="poznámkyPodČarou"/>
    74 					<xsl:call-template name="vložZápatí"/>
    75 				</div>
    76 			</body>
    77 		</html>
    78 	</xsl:template>
    79 
    80 </xsl:stylesheet>
    81