tripal-ds-feature.tpl.php 945 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * This template file provides the layout for the Tripal DS modules.
  4. *
  5. */
  6. ?>
  7. <<?php print $layout_wrapper; print $layout_attributes; ?> class="<?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 $top_wrapper ?> class="ds-top<?php print $top_classes; ?>">
  12. <?php print $top; ?>
  13. </<?php print $top_wrapper ?>>
  14. <<?php print $left_wrapper ?> class="ds-left<?php print $left_classes; ?>">
  15. <?php print $left; ?>
  16. </<?php print $left_wrapper ?>>
  17. <<?php print $right_wrapper ?> class="ds-right<?php print $right_classes; ?>">
  18. <?php print $right; ?>
  19. </<?php print $right_wrapper ?>>
  20. <<?php print $bottom_wrapper ?> class="ds-bottom<?php print $bottom_wrapper; ?>">
  21. <?php print $bottom; ?>
  22. </<?php print $bottom_wrapper ?>>
  23. </<?php print $layout_wrapper ?>>