1 <?xml version="1.0" encoding="UTF-8"?>
\r
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
\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>Przypisy</xsl:text>
\r
17 <div id="book-text" xmlns="http://www.w3.org/1999/xhtml">
\r
18 <div id="footnotes" xmlns="http://www.w3.org/1999/xhtml">
\r
19 <h2 xmlns="http://www.w3.org/1999/xhtml">
\r
22 <xsl:apply-templates mode="przypis" />
\r
29 <xsl:template match="text()" >
\r
30 <xsl:value-of select="." disable-output-escaping="yes"/>
\r
33 <xsl:template match="pa|pe|pr|pt" mode="przypis">
\r
34 <div xmlns="http://www.w3.org/1999/xhtml">
\r
35 <p id="annotation-{@number}" xmlns="http://www.w3.org/1999/xhtml"></p>
\r
36 <a class="annotation" href="part{@part}.html#anchor-{@number}" xmlns="http://www.w3.org/1999/xhtml">
\r
37 [<xsl:value-of select="@number" />]
\r
39 <p xmlns="http://www.w3.org/1999/xhtml">
\r
40 <xsl:apply-templates />
\r
45 <xsl:template match="slowo_obce">
\r
46 <em class="foreign-word" xmlns="http://www.w3.org/1999/xhtml">
\r
47 <xsl:apply-templates select="text()" />
\r
51 <xsl:template match="akap|akap_cd">
\r
52 <p class="paragraph" xmlns="http://www.w3.org/1999/xhtml">
\r
53 <xsl:apply-templates />
\r
57 <xsl:template match="strofa">
\r
58 <div class="stanza" xmlns="http://www.w3.org/1999/xhtml">
\r
59 <xsl:apply-templates />
\r
63 <xsl:template match="tytul_dziela" >
\r
64 <em class="book-title" xmlns="http://www.w3.org/1999/xhtml">
\r
65 <xsl:if test="@typ = '1'" >„</xsl:if>
\r
66 <xsl:apply-templates />
\r
67 <xsl:if test="@typ = '1'">”</xsl:if>
\r
71 <xsl:template match="wers_normalny">
\r
72 <p class="verse" xmlns="http://www.w3.org/1999/xhtml">
\r
73 <xsl:apply-templates />
\r