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" />
10 <xsl:param name="outputtype"/>
12 <xsl:template match="/">
15 <link rel="stylesheet" href="style.css" type="text/css" />
16 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
18 <xsl:text>Strona tytułowa</xsl:text>
23 <div class='title-page'>
25 <xsl:when test="//autor_utworu | //nazwa_utworu">
26 <xsl:apply-templates select="//autor_utworu" mode="poczatek"/>
27 <xsl:apply-templates select="//nazwa_utworu | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
30 <xsl:apply-templates select="//dc:creator" mode="poczatek"/>
31 <xsl:apply-templates select="//dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
36 <p class="info"> </p>
38 <xsl:call-template name="translators" />
40 <xsl:if test="utwor/@working-copy">
41 <p class="info">[Kopia robocza]</p>
44 <xsl:if test="not(utwor/@less-advertising)">
47 <xsl:attribute name="href">
48 <xsl:value-of select="//dc:identifier.url" />
51 podobnie jak tysiące innych, jest dostępna on-line na stronie
52 <a href="http://www.wolnelektury.pl/">wolnelektury.pl</a>.
56 <xsl:if test="utwor/@thanks">
57 <p class="info"><xsl:value-of select="utwor/@thanks" /></p>
61 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>.
64 <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
65 <xsl:if test=".//meta[@id=$isbnId]">
66 <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
67 <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
70 <p class="footer info">
71 <a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
78 <xsl:template match="text()" >
79 <xsl:value-of select="." />
82 <xsl:template match="node()" mode="poczatek">
83 <xsl:value-of select="." />
86 <xsl:template match="dc:creator" mode="poczatek">
88 <xsl:apply-templates mode='person' />
92 <xsl:template match="dc:creator/text()">
94 <xsl:apply-templates mode='person' />
98 <xsl:template name="translators">
99 <xsl:if test="//dc:contributor.translator">
101 <xsl:text>tłum. </xsl:text>
102 <xsl:for-each select="//dc:contributor.translator">
103 <xsl:if test="position() != 1">, </xsl:if>
104 <xsl:apply-templates mode="person" />
110 <xsl:template match="text()" mode="person">
111 <xsl:value-of select="wl:person_name(.)" />
114 <xsl:template match="autor_utworu" mode="poczatek">
116 <xsl:apply-templates />
120 <xsl:template match="dzielo_nadrzedne" mode="poczatek">
121 <h2 class="collection" >
122 <xsl:apply-templates />
126 <xsl:template match="nazwa_utworu" mode="poczatek" >
128 <xsl:apply-templates />
132 <xsl:template match="dc:title" mode="poczatek" >
134 <xsl:apply-templates />
138 <xsl:template match="podtytul" mode="poczatek">
139 <h2 class="subtitle" >
140 <xsl:apply-templates />
144 <xsl:template match="pe|pa|pr|pt" />
146 <xsl:template match="extra" />
148 <xsl:template match="motyw" />