bootstrap-12.tpl.php in Display Suite Bootstrap Layouts 7
Same filename and directory in other branches
Bootstrap 12 template for Display Suite.
File
layouts/onecol/bootstrap_12/bootstrap-12.tpl.phpView source
<?php
/**
* @file
* Bootstrap 12 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
}
?>
<div class="row">
<<?php
print $central_wrapper;
?> class="col-sm-12 <?php
print $central_classes;
?>">
<?php
print $central;
?>
</<?php
print $central_wrapper;
?>>
</div>
</<?php
print $layout_wrapper;
?>>
<!-- Needed to activate display suite support on forms -->
<?php
if (!empty($drupal_render_children)) {
?>
<?php
print $drupal_render_children;
}