

$header - Contains rendered html from the Header.tmpl.php file for your theme
$footer - Contains rendered html from the Footer.tmpl.php file for your them
$links - These are the page management links, such as the link to edit the page or to to the Control Panel
array $area1 - (Left of Page) Contains an array of html for AREA 1 of your page.
array $area2 - (Center of Page) Contains an array of html for AREA 2 of your page.
array $area3 - (Right of Page) Contains an array of html for AREA 3 of your page.
array $area4 - (Top of Page) Contains an array of html for AREA 4 of your page.
array $area5 - (Bottom of Page) Contains an array of html for AREA 5 of your page.
Columns1.tmpl.php
=========================
<?=$header?>
<div id="container" class="Columns1">
<div id="contents">
<?=implode($area2)?>
</div>
<div class="clear"></div>
</div>
</div>
<?=$footer?>
<?=$links?>
Style.css
=========================
...
#container {
text-align: left;
padding-left: 120px;
padding-right: 120px;
}
...
/* Layout: Columns1 */
.Columns1 #contents {
margin-left: 17px;
margin-right: 17px;
line-height: 2em;
}
...
Columns2.tmpl.php
=========================
<?=$header?>
<div id="container" class="Columns2">
<div id="leftbar" >
<?=implode($area1)?>
</div>
<div id="contents">
<?=implode($area2)?>
</div>
<div class="clear"></div>
</div>
</div>
<?=$footer?>
<?=$links?>
Style.css
=========================
...
#container {
text-align: left;
padding-left: 120px;
padding-right: 120px;
}
...
/* Layout: Columns2 */
.Columns2 #leftbar{
float: left;
width: 300px;
min-height: 100px;
}
.Columns2 #contents{
margin-left: 330px;
line-height: 2em;
}
...

