layout.php 313 B

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