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
19 <xsl:apply-templates select="//dc:title" mode="poczatek"/>
\r
26 <xsl:template match="text()" >
\r
27 <xsl:value-of select="." disable-output-escaping="yes" />
\r
30 <xsl:template match="node()" mode="poczatek">
\r
31 <xsl:value-of select="." />
\r
34 <xsl:template match="dc:title" mode="poczatek" >
\r
35 <h1 class="title" xmlns="http://www.w3.org/1999/xhtml">
\r
36 <xsl:apply-templates />
\r