ds-2col.tpl.php 738 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * @file
  4. * Display Suite 2 column template.
  5. */
  6. ?>
  7. <<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-2col <?php print $classes;?> clearfix">
  8. <?php if (isset($title_suffix['contextual_links'])): ?>
  9. <?php print render($title_suffix['contextual_links']); ?>
  10. <?php endif; ?>
  11. <<?php print $left_wrapper ?> class="group-left<?php print $left_classes; ?>">
  12. <?php print $left; ?>
  13. </<?php print $left_wrapper ?>>
  14. <<?php print $right_wrapper ?> class="group-right<?php print $right_classes; ?>">
  15. <?php print $right; ?>
  16. </<?php print $right_wrapper ?>>
  17. </<?php print $layout_wrapper ?>>
  18. <?php if (!empty($drupal_render_children)): ?>
  19. <?php print $drupal_render_children ?>
  20. <?php endif; ?>