boxton.tpl.php in Panels Extra Layouts 7.2
Template for Panopoly Boxton.
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/boxton/boxton.tpl.phpView source
<?php
/**
* @file
* Template for Panopoly Boxton.
*
* 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 boxton clearfix <?php
if (!empty($class)) {
print $class;
}
?>" <?php
if (!empty($css_id)) {
print "id=\"{$css_id}\"";
}
?>>
<div class="boxton-container boxton-content boxton-content-region panel-panel">
<?php
print $content['content_main'];
?>
</div>
</div><!-- /.boxton -->