layout.php 324 B

12345678910111213141516171819
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Layout (principal view) used for structuring other views.
  5. *
  6. * @author Christian Fasanando <christian1827@gmail.com> - Beeznest
  7. *
  8. * @package chamilo.auth
  9. */
  10. // Header
  11. Display::display_header('');
  12. // Display
  13. echo $content;
  14. // Footer
  15. Display::display_footer();