You are here

ds-2col-stacked.tpl.php in Display Suite 7

Same filename and directory in other branches
  1. 7.2 layouts/ds_2col_stacked/ds-2col-stacked.tpl.php

Display Suite 2 column stacked template.

File

layouts/ds_2col_stacked/ds-2col-stacked.tpl.php
View source
<?php

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

print $classes;
?> clearfix">

  <?php

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

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

}
?>

  <?php

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

  print $header_classes;
  ?>">
      <?php

  print $header;
  ?>
    </div>
  <?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

}
?>

  <?php

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

  print $footer_classes;
  ?>">
      <?php

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

}
?>
</div>