1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:dc="http://purl.org/dc/elements/1.1/">
3 <xsl:output method="html" version="1.0" encoding="utf-8" />
5 <xsl:template match="/">
6 <html xmlns="http://www.w3.org/1999/xhtml">
8 <link rel="stylesheet" href="style.css" type="text/css" />
9 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
11 <xsl:text>Strona tytułowa</xsl:text>
15 <div id="book-text" xmlns="http://www.w3.org/1999/xhtml">
16 <div class='title-page'>
17 <xsl:apply-templates select="//dc:title" mode="poczatek"/>
24 <xsl:template match="text()" >
25 <xsl:value-of select="." />
28 <xsl:template match="node()" mode="poczatek">
29 <xsl:value-of select="." />
32 <xsl:template match="dc:title" mode="poczatek" >
33 <h1 class="title" xmlns="http://www.w3.org/1999/xhtml">
34 <xsl:apply-templates />