tripal-ds-feature.tpl.php 999 B

123456789101112131415161718192021222324252627282930
  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. <div class='group-tripal-pane-content-top'></div>
  19. <?php print $right; ?>
  20. </<?php print $right_wrapper ?>>
  21. <<?php print $bottom_wrapper ?> class="ds-bottom<?php print $bottom_wrapper; ?>">
  22. <?php print $bottom; ?>
  23. </<?php print $bottom_wrapper ?>>
  24. </<?php print $layout_wrapper ?>>