1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:wl="http://wolnelektury.pl/functions">
7 <xsl:output method="html" version="1.0" encoding="utf-8" />
8 <xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
9 <xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
11 <xsl:template match="/">
14 <link rel="stylesheet" href="style.css" type="text/css" />
15 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
17 <xsl:text>Strona tytułowa</xsl:text>
22 <div class='title-page'>
24 <xsl:when test="//autor_utworu | //nazwa_utworu">
25 <xsl:apply-templates select="//autor_utworu" mode="poczatek"/>
26 <xsl:apply-templates select="//nazwa_utworu | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
29 <xsl:apply-templates select="//dc:creator" mode="poczatek"/>
30 <xsl:apply-templates select="//dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
35 <p class="info"> </p>
37 <xsl:call-template name="translators" />
39 <xsl:if test="utwor/@working-copy">
40 <p class="info">[Kopia robocza]</p>
43 <xsl:if test="not(utwor/@less-advertising)">
46 <xsl:attribute name="href">
47 <xsl:value-of select="//dc:identifier.url" />
50 podobnie jak tysiące innych, jest dostępna on-line na stronie
51 <a href="http://www.wolnelektury.pl/">wolnelektury.pl</a>.
55 <xsl:if test="utwor/@thanks">
56 <p class="info"><xsl:value-of select="utwor/@thanks" /></p>
60 Utwór opracowany został w ramach projektu<a href="http://www.wolnelektury.pl/"> Wolne Lektury</a> przez<a href="http://www.nowoczesnapolska.org.pl/"> fundację Nowoczesna Polska</a>.
63 <p class="footer info">
64 <a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
71 <xsl:template match="text()" >
72 <xsl:value-of select="." />
75 <xsl:template match="node()" mode="poczatek">
76 <xsl:value-of select="." />
79 <xsl:template match="dc:creator" mode="poczatek">
81 <xsl:apply-templates mode='person' />
85 <xsl:template match="dc:creator/text()">
87 <xsl:apply-templates mode='person' />
91 <xsl:template name="translators">
92 <xsl:if test="//dc:contributor.translator">
94 <xsl:text>tłum. </xsl:text>
95 <xsl:for-each select="//dc:contributor.translator">
96 <xsl:if test="position() != 1">, </xsl:if>
97 <xsl:apply-templates mode="person" />
103 <xsl:template match="text()" mode="person">
104 <xsl:value-of select="wl:person_name(.)" />
107 <xsl:template match="autor_utworu" mode="poczatek">
109 <xsl:apply-templates />
113 <xsl:template match="dzielo_nadrzedne" mode="poczatek">
114 <h2 class="collection" >
115 <xsl:apply-templates />
119 <xsl:template match="nazwa_utworu" mode="poczatek" >
121 <xsl:apply-templates />
125 <xsl:template match="dc:title" mode="poczatek" >
127 <xsl:apply-templates />
131 <xsl:template match="podtytul" mode="poczatek">
132 <h2 class="subtitle" >
133 <xsl:apply-templates />
137 <xsl:template match="pe|pa|pr|pt" />
139 <xsl:template match="extra" />
141 <xsl:template match="motyw" />