in reply to HTML::Template vs. Template Toolkit
Any template langauge that lets you 'code' in the template is bad. Logic goes in the code, not the template.You don't want to be debugging logic in more than one place.
You should always have to update your script when logic changes, even if it is minor. Life is easier for your programmers if the code is a black box for your web guys.
And besides, try telling your web guys they can't use dreamweaver with the templates (HTML::Template can use <!-- TMPL_VAR NAME="foo" --> syntax).
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: HTML::Template vs. Template Toolkit
by Masem (Monsignor) on May 25, 2001 at 01:40 UTC | |
Re: Re: HTML::Template vs. Template Toolkit
by DBX (Pilgrim) on May 25, 2001 at 01:51 UTC | |
Re: Re: HTML::Template vs. Template Toolkit
by TheoPetersen (Priest) on May 25, 2001 at 17:16 UTC |