bootstrap-8-4.tpl.php in Display Suite Bootstrap Layouts 8.3
Same filename and directory in other branches
Bootstrap 8-4 template for Display Suite.
File
layouts/twocol/bootstrap_8_4/bootstrap-8-4.tpl.phpView source
<?php
/**
 * @file
 * Bootstrap 8-4 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-fluid">
    <<?php
print $left_wrapper;
?> class="span8 <?php
print $left_classes;
?>">
      <?php
print $left;
?>
    </<?php
print $left_wrapper;
?>>
    <<?php
print $right_wrapper;
?> class="span4 <?php
print $right_classes;
?>">
      <?php
print $right;
?>
    </<?php
print $right_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;
}