[Zope-CVS] CVS: Products/PageDesign/www - example_template.pt:1.1.2.1

Shane Hathaway shane@cvs.zope.org
Tue, 6 Aug 2002 21:34:10 -0400


Update of /cvs-repository/Products/PageDesign/www
In directory cvs.zope.org:/tmp/cvs-serv17955

Added Files:
      Tag: page-redesign-branch
	example_template.pt 
Log Message:
Added an example template


=== Added File Products/PageDesign/www/example_template.pt ===
<html>
  <head>
    <title tal:content="template/title">The title</title>
  </head>
  <body>

<table border="4" width="100%">
<tr>
<th colspan="3">
<h2>
Slotted Page Example
</h2>
</th>
</tr>
<tr>

<td width="25%" valign="top">
Left column
<div class="column-element" tal:repeat="element options/slots/left/multiple|nothing"
     tal:content="structure element">
Element here...
</div>
</td>

<td width="50%" valign="top">
Middle column
<div class="main-element" tal:repeat="element options/slots/middle/multiple|nothing"
     tal:content="structure element">
Element here...
</div>
</td>

<td width="50%" valign="top">

Small ad

<table border="1" width="100%">
<tr>
<td tal:content="structure options/slots/small_ad/single|default">
&nbsp;
</td>
</tr>
</table>

Right column
<div class="column-element" tal:repeat="element options/slots/right/multiple|nothing"
     tal:content="structure element">
Element here...
</div>
</td>

</tr>

</table>

<br />

<div align="center">
Copyrights and trademarks
<div tal:content="structure options/slots/bottom/single|default">
</div>
</div>

  </body>
</html>