| | <xsl:param name="ebook" select="true()" /> |
| | |
| | -<!-- If true, no footer will appear on pages with full page photos. --> |
| | -<xsl:param name="nofooter" select="true()" /> |
| | +<!-- If true, a footer (with page number) appears on full page photo pages. --> |
| | +<xsl:param name="footer" select="false()" /> |
| | |
| | -<!-- Citation style format. Valid values are endcitations (default), footercitations and inlinecitations. --> |
| | -<xsl:param name="citationstyle" select="''" /> |
| | +<!-- |
| | + | Citation style format; valid values: |
| | + | endcitations (default) |
| | + | footercitations |
| | + | inlinecitations |
| | + +--> |
| | +<xsl:param name="citation-style" select="''" /> |
| | |
| | <!-- These will come from the XML... |
 |
| | <xsl:text>print,</xsl:text> |
| | </xsl:if> |
| | - <xsl:if test="not($nofooter)"> |
| | + <xsl:if test="$footer"> |
| | <xsl:text>fullpagefooter,</xsl:text> |
| | </xsl:if> |
| | - <xsl:value-of select="$citationstyle"/> |
| | + <xsl:value-of select="$citation-style"/> |
| | <xsl:text>]</xsl:text> |
| | <xsl:text>{recipe-book}
</xsl:text> |