<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version='1.0'
  xmlns='http://www.w3.org/1999/xhtml'
  xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
  >
  <!-- @see params.xsl  -->

  <xsl:template match="id ('footer.update')">
    <span>Last-Modified: <em><xsl:value-of select="$date"/></em></span>
  </xsl:template>

  <xsl:template match="id ('footer.extra')">
    <xsl:choose>
      <xsl:when test="$footer.extra=0" />
      <xsl:otherwise><xsl:apply-templates/></xsl:otherwise>
    </xsl:choose>
  </xsl:template>

</xsl:stylesheet>

