74ef64a048042576c9a97c06ed2d617ed76ecbe5
[librarian.git] / librarian / epub / xsltTitle.xsl
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
11   <xsl:template match="/">
12     <html>
13       <head>
14         <link rel="stylesheet" href="style.css" type="text/css" />
15         <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
16         <title>
17           <xsl:text>Strona tytułowa</xsl:text>
18         </title>
19       </head>
20       <body>
21         <div id="book-text" >
22           <div class='title-page'>
23             <xsl:choose>
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"/>
27               </xsl:when>
28               <xsl:otherwise>
29                 <xsl:apply-templates select="//dc:creator" mode="poczatek"/>
30                 <xsl:apply-templates select="//dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
31               </xsl:otherwise>
32             </xsl:choose>
33           </div>
34
35           <p class="info">&#160;</p>
36
37           <xsl:call-template name="translators" />
38
39           <xsl:if test="not(utwor/@less-advertising)">
40             <p class="info">
41               <a>
42                   <xsl:attribute name="href">
43                       <xsl:value-of select="//dc:identifier.url" />
44                   </xsl:attribute>
45                   Ta lektura</a>,
46               podobnie jak tysiące innych, jest dostępna on-line na stronie
47               <a href="http://www.wolnelektury.pl/">wolnelektury.pl</a>.
48             </p>
49           </xsl:if>
50
51           <p class="info">
52             Utwór opracowany został w&#160;ramach projektu<a href="http://www.wolnelektury.pl/"> Wolne Lektury</a> przez<a href="http://www.nowoczesnapolska.org.pl/"> fundację Nowoczesna Polska</a>.
53           </p>
54
55           <p class="footer info">
56             <a href="http://www.wolnelektury.pl/"><img src="logo_wolnelektury.png" alt="WolneLektury.pl" /></a>
57           </p>
58         </div>
59       </body>
60     </html>
61   </xsl:template>
62
63   <xsl:template match="text()" >
64     <xsl:value-of select="." />
65   </xsl:template>
66
67   <xsl:template match="node()" mode="poczatek">
68     <xsl:value-of select="." />
69   </xsl:template>
70
71   <xsl:template match="dc:creator" mode="poczatek">
72     <h2 class="author">
73       <xsl:apply-templates mode='person' />
74     </h2>
75   </xsl:template>
76
77   <xsl:template match="dc:creator/text()">
78     <h2 class="author" >
79       <xsl:apply-templates mode='person' />
80     </h2>
81   </xsl:template>
82
83   <xsl:template name="translators">
84     <xsl:if test="//dc:contributor.translator">
85         <p class="info">
86             <xsl:text>tłum. </xsl:text>
87             <xsl:for-each select="//dc:contributor.translator">
88                 <xsl:if test="position() != 1">, </xsl:if>
89                 <xsl:apply-templates mode="person" />
90             </xsl:for-each>
91         </p>
92     </xsl:if>
93   </xsl:template>
94
95   <xsl:template match="text()" mode="person">
96     <xsl:value-of select="wl:person_name(.)" />
97   </xsl:template>
98
99   <xsl:template match="autor_utworu" mode="poczatek">
100     <h2 class="author" >
101       <xsl:apply-templates />
102     </h2>
103   </xsl:template>
104
105   <xsl:template match="dzielo_nadrzedne" mode="poczatek">
106     <h2 class="collection" >
107       <xsl:apply-templates />
108     </h2>
109   </xsl:template>
110
111   <xsl:template match="nazwa_utworu" mode="poczatek" >
112     <h1 class="title" >
113       <xsl:apply-templates />
114     </h1>
115   </xsl:template>
116
117   <xsl:template match="dc:title" mode="poczatek" >
118     <h1 class="title" >
119       <xsl:apply-templates />
120     </h1>
121   </xsl:template>
122
123   <xsl:template match="podtytul" mode="poczatek">
124     <h2 class="subtitle" >
125       <xsl:apply-templates />
126     </h2>
127   </xsl:template>
128
129   <xsl:template match="pe|pa|pr|pt" />
130
131   <xsl:template match="extra" />
132
133   <xsl:template match="motyw" />
134
135 </xsl:stylesheet>