You are here

radix-geary.tpl.php in Radix Layouts 7

Template for Panopoly Geary.

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_geary/radix-geary.tpl.php
View source
<?php

/**
 * @file
 * Template for Panopoly Geary.
 *
 * 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 geary 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="span12 top panel-panel">
        <div class="panel-panel-inner">
          <?php

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

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

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

print $content['column3'];
?>
        </div>
      </div>
    </div>
  </div>
  
</div><!-- /.geary -->