You are here

radix-burr.tpl.php in Radix Layouts 7

Template for Panopoly Burr.

Variables:

  • $css_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:

File

plugins/layouts/radix_burr/radix-burr.tpl.php
View source
<?php

/**
 * @file
 * Template for Panopoly Burr.
 *
 * Variables:
 * - $css_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:
 */
?>
<div class="panel-display burr clearfix <?php

if (!empty($classes)) {
  print $classes;
}
if (!empty($class)) {
  print $class;
}
?>" <?php

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

  <div class="container">
    <div class="row-fluid">
      <div class="span4 sidebar panel-panel">
        <div class="panel-panel-inner">
          <?php

print $content['sidebar'];
?>
        </div>
      </div>
      <div class="span8 content panel-panel">
        <div class="panel-panel-inner">
          <?php

print $content['contentmain'];
?>
        </div>
      </div>
    </div>
  </div>
    
</div><!-- /.burr -->