You are here

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

Same filename and directory in other branches
  1. 7 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.
 */
?>
<<?php

print $layout_wrapper;
print $layout_attributes;
?> class="ds-2col-stacked <?php

print $classes;
?> clearfix">

  <?php

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

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

}
?>

  <<?php

print $header_wrapper;
?> class="group-header<?php

print $header_classes;
?>">
    <?php

print $header;
?>
  </<?php

print $header_wrapper;
?>>

  <<?php

print $left_wrapper;
?> class="group-left<?php

print $left_classes;
?>">
    <?php

print $left;
?>
  </<?php

print $left_wrapper;
?>>

  <<?php

print $right_wrapper;
?> class="group-right<?php

print $right_classes;
?>">
    <?php

print $right;
?>
  </<?php

print $right_wrapper;
?>>

  <<?php

print $footer_wrapper;
?> class="group-footer<?php

print $footer_classes;
?>">
    <?php

print $footer;
?>
  </<?php

print $footer_wrapper;
?>>

</<?php

print $layout_wrapper;
?>>

<?php

if (!empty($drupal_render_children)) {
  ?>
  <?php

  print $drupal_render_children;
}