radix-bartlett.tpl.php in Radix Layouts 7.2
Same filename and directory in other branches
Template for Radix Bartlett.
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_bartlett/radix-bartlett.tpl.phpView source
<?php
/**
* @file
* Template for Radix Bartlett.
*
* 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 bartlett 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">
<!-- Sidebar -->
<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="row-fluid">
<div class="span12 content-header panel-panel">
<div class="panel-panel-inner">
<?php
print $content['contentheader'];
?>
</div>
</div>
<div class="span6 content-column1 panel-panel">
<div class="panel-panel-inner">
<?php
print $content['contentcolumn1'];
?>
</div>
</div>
<div class="span6 content-column2 panel-panel">
<div class="panel-panel-inner">
<?php
print $content['contentcolumn2'];
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div><!-- /.bartlett -->