The answer to that question really depends on what you are trying to do with Template Toolkit.

Are you generating static HTML pages, or writing templates that will have content populated by a cgi script?

tpage is just a simple script for wrapping the perl modules that generate html from a template.
ttree is similar, but works recursively over directories.

For generating dynamic content I found this tutorial helpful. I don't have time this morning to read over the devshed one, but it probably covers similar content.

Update

After re-reading your post it sounds like other people edit content documents, which you then place within a wrapper template. If this is the case then you should look at the INSERT and INCLUDE directives.

If you want to generate static pages then one of the variables passed to the template can be the name of another template . The following command would generate the template, defining the 'content_file' variable with the value 'content/foo.html':

tpage --define content_file=content/foo.html wrapper.html > > static- +foo.html
And in your template:
<html> ... [ INSERT $content_file ] ... </html>

In reply to Re: Learning Template::Toolkit - have I understood? by imp
in thread Learning Template::Toolkit - have I understood? by punch_card_don

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.