1 <?xml version="1.0" encoding="UTF-8"?>
\r
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/">
\r
3 <xsl:output method="html" version="1.0" encoding="utf-8" />
\r
4 <xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
\r
5 <xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
\r
7 <xsl:template match="/">
\r
8 <html xmlns="http://www.w3.org/1999/xhtml">
\r
10 <link rel="stylesheet" href="style.css" type="text/css" />
\r
11 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
\r
13 <xsl:text>Strona tytułowa</xsl:text>
\r
17 <div id="book-text" xmlns="http://www.w3.org/1999/xhtml">
\r
18 <div class='title-page'>
\r
20 <xsl:when test="//autor_utworu | //nazwa_utworu">
\r
21 <xsl:apply-templates select="//autor_utworu | //nazwa_utworu | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
\r
24 <xsl:apply-templates select="//dc:creator | //dc:title | //podtytul | //dzielo_nadrzedne" mode="poczatek"/>
\r
28 <p class="info">Publikacja zrealizowana w ramach projektu WolneLektury.pl</p>
\r
30 <img src="logo_wolnelektury.png" alt="WolneLektury.pl" />
\r
37 <xsl:template match="text()" >
\r
38 <xsl:value-of select="." disable-output-escaping="yes" />
\r
41 <xsl:template match="node()" mode="poczatek">
\r
42 <xsl:value-of select="." />
\r
45 <xsl:template match="dc:creator" mode="poczatek">
\r
46 <div class="author" xmlns="http://www.w3.org/1999/xhtml">
\r
47 <xsl:apply-templates />
\r
51 <xsl:template match="autor_utworu" mode="poczatek">
\r
52 <div class="author" xmlns="http://www.w3.org/1999/xhtml">
\r
53 <xsl:apply-templates />
\r
57 <xsl:template match="dzielo_nadrzedne" mode="poczatek">
\r
58 <div class="collection" xmlns="http://www.w3.org/1999/xhtml">
\r
59 <xsl:apply-templates />
\r
63 <xsl:template match="nazwa_utworu" mode="poczatek" >
\r
64 <h1 class="title" xmlns="http://www.w3.org/1999/xhtml">
\r
65 <xsl:apply-templates />
\r
69 <xsl:template match="dc:title" mode="poczatek" >
\r
70 <h1 class="title" xmlns="http://www.w3.org/1999/xhtml">
\r
71 <xsl:apply-templates />
\r
75 <xsl:template match="podtytul" mode="poczatek">
\r
76 <div class="subtitle" xmlns="http://www.w3.org/1999/xhtml">
\r
77 <xsl:apply-templates />
\r
81 <xsl:template match="pe|pa|pr|pt" />
\r
83 <xsl:template match="extra" />
\r
85 <xsl:template match="pe|pa|pr|pt" />
\r
87 <xsl:template match="extra" />
\r
89 <xsl:template match="motyw" />
\r