You are here

threecol-42-29-29-stacked.tpl.php in Panels Extra Layouts 6

threecol-42-29-29-stacked.tpl.php @author António P. P. Almeida <appa@perusio.net> @date Fri Dec 17 04:59:07 2010

@brief Template for the three column 42/29/29 stacked layout.

File

plugins/layouts/threecol_42_29_29_stacked/threecol-42-29-29-stacked.tpl.php
View source
<?php

/**
 * @file   threecol-42-29-29-stacked.tpl.php
 * @author António P. P. Almeida <appa@perusio.net>
 * @date   Fri Dec 17 04:59:07 2010
 * 
 * @brief  Template for the three column 42/29/29 stacked layout.
 * 
 * 
 */
?>
<div class="panel-display panel-threecol-42-29-29-stacked clear-block" <?php

if (!empty($css_id)) {
  print "id=\"{$css_id}\"";
}
?>>
  
  <div class="panel-panel line">
    <div class="panel-panel unit panel-col-forty-two firstUnit">
      <div class="inside">
        <?php

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

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

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

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

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

  <div class="panel-panel line">
    <div class="panel-panel unit panel-bottom lastUnit">
      <?php

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

  <div class="panel-panel line">
    <div class="panel-panel unit panel-bottom lastUnit">
      <?php

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