XSLT日付比較を実装しようとしていますが、機能していないようです。コードは次のとおりです。
<xsl:variable name="CreatedDate" select="@createDate"/>
                <xsl:variable name="IDAppendedDate" select="2012-01-01" />
                 <b>date: <xsl:value-of select="$CreatedDate"/></b> 
                 <xsl:if test="$CreatedDate > $IDAppendedDate">
                   <h2> mooooooooooooo </h2>
                </xsl:if>
ありがとう