New here, so wondering if someone is able to help please?
Basically looking for something that will display an image ("New") if an item is no more than three days old.
Based on info I've read here so far, this is where I'm at - any help would be VERY much appreciated...
<xsl:variable name="NewImageDateLimit" select="@CreatedDate + 3"/>
<xsl:variable name="Today" select="Today()" />
<xsl:if test="$NewImageDateLimit > $Today">
Show image
</xsl:if>