On Wed, 06 Oct 2004 22:09:40 -0400, Joel Gwynn <[EMAIL PROTECTED]> wrote: > I'm working on a web site that will be a combination of static pages and > application pages, and I'd like to use cgiapp to build the static > pages. I've been browsing the archives, and can't find any real answers.
I don't know if there would be much of a benefit using CGI::App to generate the static pages. Is there a specific reason you want to do this? > Should I be considering a separate utility or CMS based on HTML::Template? I would look at using Template Toolkit with your CGI::App modules (the dynamic part), and use the ttree program that comes with Template Toolkit to generate your static pages. This allows you to use the same templating system in both the dynamic and static pages, so a consistent design can be shared without duplication. Of course this is possible with HTML::Template as well, although you will have to write a few of the extra bits yourself. -- Cees Hek --------------------------------------------------------------------- Web Archive: http://www.mail-archive.com/[EMAIL PROTECTED]/ http://marc.theaimsgroup.com/?l=cgiapp&r=1&w=2 To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
