I have a web page which has 3 potential content areas spread across 3 table
columns. Following the lead in the O'Reilly book, I can define the page
layout with:

[% WRAPPER html;
     WRAPPER layout;
       content;
     END;
   END
%]

lib/layout has a 3-column table:

<table>
  <tr>
    <td><!-- leftcol --></td>
    <td>[% content %]</td>
    <td><!-- rightcol --></td>
  </tr>
</table>

How can I get content into 'leftcol' and 'rightcol' since the WRAPPER
approach above only services the central column? If I use an INCLUDE I'll
get the same content on every page, which I don't want.

Garry Heaton

_______________________________________________
templates mailing list
[EMAIL PROTECTED]
http://lists.template-toolkit.org/mailman/listinfo/templates

Reply via email to