You are here

twocol-30-70.tpl.php in Drupal Commons 6.2

Template for a 2 column panel layout.

This template provides a two column 30%-70% panel display layout.

Variables:

  • $id: An optional CSS id to use for the layout.
  • $content: An array of content, each item in the array is keyed to one panel of the layout. This layout supports the following sections:

    • $content['left']: Content in the left column.
    • $content['right']: Content in the right column.

File

themes/commons_roots/panels/twocol-30-70.tpl.php
View source
<?php

// $Id: twocol-30-70.tpl.php 7714 2010-07-16 15:45:46Z sheena $

/**
 * @file
 * Template for a 2 column panel layout.
 *
 * This template provides a two column 30%-70% panel display layout.
 *
 * Variables:
 * - $id: An optional CSS id to use for the layout.
 * - $content: An array of content, each item in the array is keyed to one
 *   panel of the layout. This layout supports the following sections:
 *   - $content['left']: Content in the left column.
 *   - $content['right']: Content in the right column.
 */
?>
<div class="panel-display twocol-30-70 clearfix" <?php

if (!empty($css_id)) {
  print "id=\"{$css_id}\"";
}
?>>
  <div class="panel-panel panel-col-first">
    <div class="inner"><?php

print $content['left'];
?></div>
  </div>
  <div class="panel-panel panel-col-last">
    <div class="inner"><?php

print $content['right'];
?></div>
  </div>
</div>