Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Template Toolkit, problem with recursive wrapper templates

by larsen (Parson)
on Jul 12, 2005 at 12:46 UTC ( [id://474258]=note: print w/replies, xml ) Need Help??


in reply to Template Toolkit, problem with recursive wrapper templates

I think I figured out how to solve the problem. I changed wrapper.tt2 this way (applying this advice):
[% IF template.naked; content; ELSE; content WRAPPER site_wrapper.tt2; END; %]
Then, in my template:
[% META naked = 1 %] [% WRAPPER site_wrapper.tt2 %] + whatever [% END %] [% FOREACH c IN categories %] [% FILTER redirect("${c.name}/index.html") %] [% PROCESS portfolio/category %] [% END %] [% END %]
site_wrapper.tt2, as you can guess, contains the code that was in wrapper.tt2. In portfolio/category:
[% WRAPPER site_wrapper.tt2 %] it works! [% END %]
Now I have another problem: changing META informations in the processed template. But that's another issue.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://474258]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others lurking in the Monastery: (7)
As of 2024-04-19 15:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found