You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
313 B
18 lines
313 B
|
15 years ago
|
<?php
|
||
|
|
/* For licensing terms, see /license.txt */
|
||
|
|
|
||
|
|
/**
|
||
|
10 years ago
|
* Layout (principal view) used for structuring other views
|
||
|
15 years ago
|
* @author Christian Fasanando <christian1827@gmail.com> - Beeznest
|
||
|
|
* @package chamilo.auth
|
||
|
|
*/
|
||
|
|
|
||
|
|
// Header
|
||
|
15 years ago
|
Display::display_header('');
|
||
|
15 years ago
|
|
||
|
|
// Display
|
||
|
|
echo $content;
|
||
|
|
|
||
|
|
// Footer
|
||
|
10 years ago
|
Display::display_footer();
|