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:param name="outputtype"/>
10 <xsl:template match="/">
13 <link rel="stylesheet" href="style.css" type="text/css" />
14 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
16 <xsl:text>Strona tytułowa</xsl:text>
21 <div class='title-page'>
23 <xsl:when test="//autor_utworu | //nazwa_utworu">
24 <xsl:apply-templates select="//autor_utworu" mode="poczatek"/>
25 <xsl:apply-templates select="//nazwa_utworu | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
28 <xsl:apply-templates select="//dc:creator" mode="poczatek"/>
29 <xsl:apply-templates select="//dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
34 <p class="info"> </p>
36 <xsl:call-template name="translators" />
38 <xsl:if test="utwor/@working-copy">
39 <p class="info">[Kopia robocza]</p>
42 <xsl:if test="not(utwor/@less-advertising)">
45 <xsl:attribute name="href">
46 <xsl:value-of select="//dc:identifier.url" />
49 podobnie jak tysiące innych, jest dostępna on-line na stronie
50 <a href="http://www.wolnelektury.pl/">wolnelektury.pl</a>.
54 <xsl:if test="utwor/@thanks">
55 <p class="info"><xsl:value-of select="utwor/@thanks" /></p>
59 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>.
62 <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
63 <xsl:if test=".//meta[@id=$isbnId]">
64 <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
65 <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
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" />