You are here

panels-threecol-25-50-25-stacked.tpl.php in Panels 7.3

Template for a 3 column panel layout.

This template provides a three column 25%-50%-25% panel display layout, with additional areas for the top and the bottom.

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['top']: Content in the top row.
    • $content['left']: Content in the left column.
    • $content['middle']: Content in the middle column.
    • $content['right']: Content in the right column.
    • $content['bottom']: Content in the bottom row.

File

plugins/layouts/threecol_25_50_25_stacked/panels-threecol-25-50-25-stacked.tpl.php
View source
<?php

/**
 * @file
 * Template for a 3 column panel layout.
 *
 * This template provides a three column 25%-50%-25% panel display layout, with
 * additional areas for the top and the bottom.
 *
 * 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['top']: Content in the top row.
 *   - $content['left']: Content in the left column.
 *   - $content['middle']: Content in the middle column.
 *   - $content['right']: Content in the right column.
 *   - $content['bottom']: Content in the bottom row.
 */
?>
<div class="panel-display panel-3col-stacked clearfix" <?php

if (!empty($css_id)) {
  print "id=\"{$css_id}\"";
}
?>>
  <?php

if ($content['top']) {
  ?>
    <div class="panel-panel panel-col-top">
      <div class="inside"><?php

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

}
?>

  <div class="center-wrapper">
    <div class="panel-panel panel-col-first">
      <div class="inside"><?php

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

    <div class="panel-panel panel-col">
      <div class="inside"><?php

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

    <div class="panel-panel panel-col-last">
      <div class="inside"><?php

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

  <?php

if ($content['bottom']) {
  ?>
    <div class="panel-panel panel-col-bottom">
      <div class="inside"><?php

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

}
?>
</div>