panels-column.tpl.php 450 B

123456789101112131415
  1. <?php
  2. /**
  3. * @file
  4. * Template for a 3 column panel layout.
  5. *
  6. * This template provides a very simple "one column" panel display layout.
  7. *
  8. * Variables:
  9. * - $id: An optional CSS id to use for the layout.
  10. * - $content: An array of content, each item in the array is keyed to one
  11. * panel of the layout. This layout supports the following sections:
  12. * $content['middle']: The only panel in the layout.
  13. */
  14. ?>
  15. <?php print $content['middle']; ?>