page.tpl.php 450 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Alpha's theme implementation to display a single Drupal page.
  5. */
  6. ?>
  7. <div<?php print $attributes; ?>>
  8. <?php if (isset($page['header'])) : ?>
  9. <?php print render($page['header']); ?>
  10. <?php endif; ?>
  11. <?php if (isset($page['content'])) : ?>
  12. <?php print render($page['content']); ?>
  13. <?php endif; ?>
  14. <?php if (isset($page['footer'])) : ?>
  15. <?php print render($page['footer']); ?>
  16. <?php endif; ?>
  17. </div>