+ <xsl:call-template name="funders" />
+
+ <xsl:if test="@data-cover-by">
+ <p class="info">Okładka na podstawie:
+ <xsl:choose>
+ <xsl:when test="@data-cover-source">
+ <a>
+ <xsl:attribute name="href">
+ <xsl:value-of select="@data-cover-source" />
+ </xsl:attribute>
+ <xsl:value-of select="@data-cover-by" />
+ </a>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="@data-cover-by" />
+ </xsl:otherwise>
+ </xsl:choose>
+ </p>
+ </xsl:if>
+
+ <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
+ <xsl:if test=".//meta[@id=$isbnId]">
+ <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
+ <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
+ </xsl:if>
+