1 <?xml version="1.0" encoding="UTF-8"?>
3 XML Web generátor – program na generování webových stránek
4 Copyright © 2012 František Kučera (frantovo.cz)
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.
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.
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/>.
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">
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"/>
42 <xsl:template match="/">
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é"/>
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>
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"/>
65 <xsl:call-template name="vložZáhlaví"/>
67 <h1><xsl:value-of select="s:stránka/s:nadpis"/></h1>
68 <xsl:call-template name="vložNabídku"/>
70 <xsl:apply-templates select="s:stránka/h:text/node()"/>
73 <xsl:call-template name="poznámkyPodČarou"/>
74 <xsl:call-template name="vložZápatí"/>