You could make your own filter. For 100% accurate details on how to set this up take a look at the TT docs. But something like this should be close (there is extra stuff you need to do to package this routine i.e. putting it in a package, telling TT how to find the package etc. I don't have a ton of time right now so I'll leave you to dig.
sub ByDate { my ($self, $text, $args, $conf) = @_; # Do appropriate time formatting $cooked_now = TimeFormat(time); if($cooked_now > $args->[0] && $cooked_now < $args->[1]) { return $text; } else { return ""; } }
The TT code would look something like this
[% USE MyFilter %] [% FILTER $MyFilter <start> <end> %] Don't display this before <start> or after <end> [% END %]
As I said, I forget exactly how the linkage between MyFilter and your code works, I do remember it's explained very well in the docs. Hope this helps.

In reply to Re: Date-sensitive output with Template Toolkit by amw1
in thread Date-sensitive output with Template Toolkit by Tanktalus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.