I have a problem with Template Toolkit, more specifically with the
WRAPPER directive. I'm using
ttree.
In my
ttreerc I defined a wrapper, let's call it "foo".
Then, in one of the pages, I used a
redirect() FILTER to
produce several pages, each described in a data structure defined in the page.
This is very similar to my actual code:
[% categories = [ ... ] %]
[% FOREACH c IN categories %]
[% FILTER redirect( $c ) %]
bla bla bla
[% END %]
[% END %]
Now, I'd like each category page to use the same wrapper. My first attempt has been the following:
...
[% FILTER redirect( $c ) %]
[% WRAPPER foo %]
bla bla bla
[% END %]
[% END %]
...
but it does not work, leading to
! file error - recursion into 'wrapper.tt2' in the build phase. Allowing recursion via ttree config leads just to deeper errors.
I think I'm facing a common problem, which I'm trying to solve using the wrong tecnique. What's your advice ?
Thank you.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.