You are here

dstest-2col.tpl.php in Display Suite 7.2

Same filename and directory in other branches
  1. 7 tests/dstest_2col/dstest-2col.tpl.php

Display Suite 2 column template.

File

tests/dstest_2col/dstest-2col.tpl.php
View source
<?php

/**
 * @file
 * Display Suite 2 column template.
 */
?>
<div class="<?php

print $classes;
?> clearfix">

  <?php

if (isset($title_suffix['contextual_links'])) {
  ?>
  <?php

  print render($title_suffix['contextual_links']);
  ?>
  <?php

}
?>

  <?php

if ($left) {
  ?>
    <div class="group-left<?php

  print $left_classes;
  ?>">
      <?php

  print $left;
  ?>
    </div>
  <?php

}
?>

  <?php

if ($right) {
  ?>
    <div class="group-right<?php

  print $right_classes;
  ?>">
      <?php

  print $right;
  ?>
    </div>
  <?php

}
?>

</div>