This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:template name="months"> <!-- display a list of linked month numbers (from 12 to 00) counting back from current month for archive pages --> | |
<xsl:param name="thismonth" select="$this-month"/> <!-- month number --> | |
<xsl:param name="countmonths" select="12"/> <!-- months in a year --> | |
<xsl:if test="$countmonths > 0"> | |
<xsl:choose> | |
<xsl:when test="$thismonth > 0"> <!-- if it's bigger than 0 --> | |
<xsl:choose> | |
<xsl:when test="string-length($thismonth) = 1"> <!-- if there's no preceding zero --> | |
<a href="{$root}/blog/archive/{$this-year}-0{$thismonth}"> | |
<li class="month-0{$thismonth}"> |
NewerOlder