ds-4col.tpl.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * @file
  4. * Display Suite 4 column template.
  5. */
  6. ?>
  7. <<?php print $layout_wrapper; print $layout_attributes; ?> class="ds-4col <?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 $first_wrapper ?> class="group-first<?php print $first_classes; ?>">
  12. <?php print $first; ?>
  13. </<?php print $first_wrapper ?>>
  14. <<?php print $second_wrapper ?> class="group-second<?php print $second_classes; ?>">
  15. <?php print $second; ?>
  16. </<?php print $second_wrapper ?>>
  17. <<?php print $third_wrapper ?> class="group-third<?php print $third_classes; ?>">
  18. <?php print $third; ?>
  19. </<?php print $third_wrapper ?>>
  20. <<?php print $fourth_wrapper ?> class="group-fourth<?php print $fourth_classes; ?>">
  21. <?php print $fourth; ?>
  22. </<?php print $fourth_wrapper ?>>
  23. </<?php print $layout_wrapper ?>>
  24. <?php if (!empty($drupal_render_children)): ?>
  25. <?php print $drupal_render_children ?>
  26. <?php endif; ?>