<title>Książka z serwisu WolneLektury.pl</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
- <link href="https://static.wolnelektury.pl/css/compressed/book_text.css" rel="stylesheet" type="text/css" />
+ <link rel="stylesheet" type="text/css">
+ <xsl:attribute name="href">
+ <xsl:value-of select="$css" />
+ </xsl:attribute>
+ </link>
</head>
<body>
- <xsl:call-template name="book-text" />
+ <xsl:call-template name="book-text" />
+
+ <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
+ <script src="http://malsup.github.io/min/jquery.cycle2.min.js"></script>
</body>
</html>
</xsl:when>
</xsl:template>
<xsl:template match="lista_osob">
+ <xsl:call-template name="section-anchor"/>
<div class="person-list">
<h3><xsl:value-of select="naglowek_listy" /></h3>
<ol>
</xsl:template>
<xsl:template match="motto">
+ <xsl:call-template name="section-anchor"/>
<div class="motto"><xsl:apply-templates /></div>
</xsl:template>
</img>
</xsl:template>
+<xsl:template match="animacja">
+ <div class="animacja cycle-slideshow" data-cycle-pause-on-hover="true" data-cycle-next="> img" data-cycle-fx="fadeout" data-cycle-paused="true">
+ <xsl:apply-templates/>
+ </div>
+</xsl:template>
+
<!-- ========================================== -->
<!-- = PARAGRAPH TAGS = -->
<h2><xsl:apply-templates mode="inline" /></h2>
</xsl:template>
+<xsl:template match="podtytul_akt|podtytul_czesc">
+ <div class="subtitle2">
+ <xsl:apply-templates mode="inline" />
+ </div>
+</xsl:template>
+
<xsl:template match="naglowek_scena|naglowek_rozdzial">
<xsl:call-template name="section-anchor"/>
<h3><xsl:apply-templates mode="inline" /></h3>
</xsl:template>
+<xsl:template match="podtytul_scena|podtytul_rozdzial">
+ <div class="subtitle3">
+ <xsl:apply-templates mode="inline" />
+ </div>
+</xsl:template>
+
<xsl:template match="naglowek_osoba|naglowek_podrozdzial">
<xsl:call-template name="section-anchor"/>
<h4><xsl:apply-templates mode="inline" /></h4>
</xsl:template>
+<xsl:template match="podtytul_podrozdzial">
+ <div class="subtitle4">
+ <xsl:apply-templates mode="inline" />
+ </div>
+</xsl:template>
+
<!-- Other paragraph tags -->
<xsl:template match="miejsce_czas">
<xsl:call-template name="section-anchor"/>
<xsl:template name="verse">
<xsl:param name="verse-content" />
<xsl:param name="verse-type" />
- <p class="verse">
+ <div class="verse">
<xsl:choose>
<xsl:when test="name($verse-type) = 'wers_akap'">
<xsl:attribute name="style">padding-left: 1em</xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates select="$verse-content" mode="inline" />
- </p>
+ </div>
</xsl:template>
<xsl:template match="motto_podpis">
+ <xsl:call-template name="section-anchor"/>
<p class="motto_podpis"><xsl:apply-templates mode="inline" /></p>
</xsl:template>
<xsl:template match="tabela|tabelka">
+ <xsl:call-template name="section-anchor"/>
<xsl:choose>
<xsl:when test="@ramka = '1'">
<table class="border"><xsl:apply-templates /></table>