You are here

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

Same filename and directory in other branches
  1. 7 layouts/ds_3col_stacked/ds-3col-stacked.tpl.php

Display Suite 3 column 25/50/25 stacked template.

File

layouts/ds_3col_stacked/ds-3col-stacked.tpl.php
View source
<?php

/**
 * @file
 * Display Suite 3 column 25/50/25 stacked template.
 */
?>
<<?php

print $layout_wrapper;
print $layout_attributes;
?> class="ds-3col-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 $middle_wrapper;
?> class="group-middle<?php

print $middle_classes;
?>">
    <?php

print $middle;
?>
  </<?php

print $middle_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;
}