bootstrap-6-6-bricks.tpl.php in Display Suite Bootstrap Layouts 8.3
Same filename and directory in other branches
Bootstrap 6-6 bricks template for Display Suite.
File
layouts/twocol/bootstrap_6_6_bricks/bootstrap-6-6-bricks.tpl.phpView source
<?php
/**
* @file
* Bootstrap 6-6 bricks template for Display Suite.
*/
?>
<<?php
print $layout_wrapper;
print $layout_attributes;
?> class="<?php
print $classes;
?>">
<?php
if (isset($title_suffix['contextual_links'])) {
?>
<?php
print render($title_suffix['contextual_links']);
?>
<?php
}
?>
<?php
if ($top) {
?>
<div class="row-fluid">
<<?php
print $top_wrapper;
?> class="span12 <?php
print $top_classes;
?>">
<?php
print $top;
?>
</<?php
print $top_wrapper;
?>>
</div>
<?php
}
?>
<?php
if ($topleft || $topright) {
?>
<div class="row-fluid">
<<?php
print $topleft_wrapper;
?> class="span6 <?php
print $topleft_classes;
?>">
<?php
print $topleft;
?>
</<?php
print $topleft_wrapper;
?>>
<<?php
print $topright_wrapper;
?> class="span6 <?php
print $topright_classes;
?>">
<?php
print $topright;
?>
</<?php
print $topright_wrapper;
?>>
</div>
<?php
}
?>
<?php
if ($central) {
?>
<div class="row-fluid">
<<?php
print $central_wrapper;
?> class="span12 <?php
print $central_classes;
?>">
<?php
print $central;
?>
</<?php
print $central_wrapper;
?>>
</div>
<?php
}
?>
<?php
if ($bottomleft || $bottomright) {
?>
<div class="row-fluid">
<<?php
print $bottomleft_wrapper;
?> class="span6 <?php
print $bottomleft_classes;
?>">
<?php
print $bottomleft;
?>
</<?php
print $bottomleft_wrapper;
?>>
<<?php
print $bottomright_wrapper;
?> class="span6 <?php
print $bottomright_classes;
?>">
<?php
print $bottomright;
?>
</<?php
print $bottomright_wrapper;
?>>
</div>
<?php
}
?>
<?php
if ($bottom) {
?>
<div class="row-fluid">
<<?php
print $bottom_wrapper;
?> class="span12 <?php
print $bottom_classes;
?>">
<?php
print $bottom;
?>
</<?php
print $bottom_wrapper;
?>>
</div>
<?php
}
?>
</<?php
print $layout_wrapper;
?>>
<!-- Needed to activate display suite support on forms -->
<?php
if (!empty($drupal_render_children)) {
?>
<?php
print $drupal_render_children;
}