True, I was thinking of something like
Code:
<xen:if is="{xen:date $serverTime, 'D'} == 'Sat'">
This content will show on Saturdays
</xen:if>
In my case I'd like something that would show up on Saturdays between 3 and 4. With some help from your tutorial and
@Chris D, I think I've figured out that the following will work if I make corrections for time zones.
Code:
<xen:if is="{xen:date $serverTime, 'D'} == 'Sat' AND {xen:date $serverTime, 'G'} == '3'">
This content will show between 3 and 4 on Saturdays
</xen:if>