radix-taylor.tpl.php in Radix Layouts 7
Same filename and directory in other branches
Template for Panopoly Taylor.
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_taylor/radix-taylor.tpl.phpView source
<?php
/**
* @file
* Template for Panopoly Taylor.
*
* 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 taylor clearfix <?php
if (!empty($class)) {
print $class;
}
?>" <?php
if (!empty($css_id)) {
print "id=\"{$css_id}\"";
}
?>>
<div class="container">
<div class="row-fluid">
<div class="span12 header panel-panel">
<div class="panel-panel-inner">
<?php
print $content['header'];
?>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span6 content panel-panel">
<div class="panel-panel-inner">
<?php
print $content['half'];
?>
</div>
</div>
<div class="span3 sidebar panel-panel">
<div class="panel-panel-inner">
<?php
print $content['quarter1'];
?>
</div>
</div>
<div class="span3 sidebar panel-panel">
<div class="panel-panel-inner">
<?php
print $content['quarter2'];
?>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span12 footer panel-panel">
<div class="panel-panel-inner">
<?php
print $content['footer'];
?>
</div>
</div>
</div>
</div>
</div><!-- /.taylor -->