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>Title page</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>.
57 <xsl:when test="//dc:contributor">Thank you for your contribution, <xsl:value-of select="//dc:contributor"/>!</xsl:when>
58 <xsl:otherwise>Thank you for all your contributions!</xsl:otherwise>
60 <br/>You made this book possible.
65 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>.
68 <p class="footer info">
69 <a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
76 <xsl:template match="text()" >
77 <xsl:value-of select="." />
80 <xsl:template match="node()" mode="poczatek">
81 <xsl:value-of select="." />
84 <xsl:template match="dc:creator" mode="poczatek">
86 <xsl:apply-templates mode='person' />
90 <xsl:template match="dc:creator/text()">
92 <xsl:apply-templates mode='person' />
96 <xsl:template name="translators">
97 <xsl:if test="//dc:contributor.translator">
99 <xsl:text>tłum. </xsl:text>
100 <xsl:for-each select="//dc:contributor.translator">
101 <xsl:if test="position() != 1">, </xsl:if>
102 <xsl:apply-templates mode="person" />
108 <xsl:template match="text()" mode="person">
109 <xsl:value-of select="wl:person_name(.)" />
112 <xsl:template match="autor_utworu" mode="poczatek">
114 <xsl:apply-templates />
118 <xsl:template match="dzielo_nadrzedne" mode="poczatek">
119 <h2 class="collection" >
120 <xsl:apply-templates />
124 <xsl:template match="nazwa_utworu" mode="poczatek" >
126 <xsl:apply-templates />
130 <xsl:template match="dc:title" mode="poczatek" >
132 <xsl:apply-templates />
136 <xsl:template match="podtytul" mode="poczatek">
137 <h2 class="subtitle" >
138 <xsl:apply-templates />
142 <xsl:template match="pe|pa|pr|pt" />
144 <xsl:template match="extra" />
146 <xsl:template match="motyw" />