wrote in news:1110213506.344130.244510
@l41g2000cwc.googlegroups.com:
> I'm a long-time user of HTML::Template for creating large and small
> sites alike. But since my graphic design and layout skills extend only
> to intermediate at best and I need to create some fairly nice HTML
> layouts, I've considered using Dreamweaver (or some such) to create my
> overall look and feel, then place my HTML::Template tags accordingly in
> the resulting HTML.
>
> I'm looking for something on the order of Dreamweaver that will ignore
> -- as in line with the design goal of the HTML::Template module writer
> -- HTML::Template "tags". Can anyone recommend or provide their
> experience with something like this?
HTML::Template allows you to embed its special tags in HTML comments,
which any decent editor will leave alone (see "Notes" in the
documentation).
However, I'd suggest that you learn to use CSS for your layouts rather
than a "WYSIWYG" tool. You're already separating your document structure
from your code by using templates; the next logical step is to separate
your layout/styling from your document structure using stylesheets. The
less intertwingling, the easier the whole thing is to maintain.