ds-3col-equal-width.tpl.php in Display Suite 7.2
Same filename and directory in other branches
Display Suite 3 column equal width template.
File
layouts/ds_3col_equal_width/ds-3col-equal-width.tpl.phpView source
<?php
/**
* @file
* Display Suite 3 column equal width template.
*/
?>
<<?php
print $layout_wrapper;
print $layout_attributes;
?> class="ds-3col-equal <?php
print $classes;
?> clearfix">
<?php
if (isset($title_suffix['contextual_links'])) {
?>
<?php
print render($title_suffix['contextual_links']);
?>
<?php
}
?>
<<?php
print $left_wrapper;
?> class="group-left<?php
print $left_classes;
?>">
<?php
print $left;
?>
</<?php
print $left_wrapper;
?>>
<<?php
print $middle_wrapper;
?> class="group-middle<?php
print $middle_classes;
?>">
<?php
print $middle;
?>
</<?php
print $middle_wrapper;
?>>
<<?php
print $right_wrapper;
?> class="group-right<?php
print $right_classes;
?>">
<?php
print $right;
?>
</<?php
print $right_wrapper;
?>>
</<?php
print $layout_wrapper;
?>>
<?php
if (!empty($drupal_render_children)) {
?>
<?php
print $drupal_render_children;
}