You are here

bootstrap-3-6-3.tpl.php in Display Suite Bootstrap Layouts 7

Bootstrap 3-6-3 template for Display Suite.

File

layouts/threecol/bootstrap_3_6_3/bootstrap-3-6-3.tpl.php
View source
<?php

/**
 * @file
 * Bootstrap 3-6-3 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 $left_wrapper;
?> class="col-sm-3 <?php

print $left_classes;
?>">
      <?php

print $left;
?>
    </<?php

print $left_wrapper;
?>>
    <<?php

print $central_wrapper;
?> class="col-sm-6 <?php

print $central_classes;
?>">
      <?php

print $central;
?>
    </<?php

print $central_wrapper;
?>>
    <<?php

print $right_wrapper;
?> class="col-sm-3 <?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;
}