12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <link href="http://www.chamilo.org/documentation.php" rel="Help" />
- <link href="http://www.chamilo.org/team.php" rel="Author" />
- <link href="http://www.chamilo.org" rel="Copyright" />
- <link rel="top" href="{$_p.web_main}index.php" title="" />
- <link rel="courses" href="{$_p.web_main}auth/courses.php" title="{"OtherCourses"|get_lang}"/>
- <link rel="profil" href="{$_p.web_main}auth/profile.php" title="{"ModifyProfile"|get_lang}"/>
- <meta http-equiv="Content-Type" content="text/html; charset={$system_charset}" />
- <meta name="Generator" content="{$_s.software_name} {$_s.system_version|substr:0:1}" />
-
- <title>{$title_string}</title>
- <style type="text/css" media="screen, projection">
- /*<![CDATA[*/
- {$css_style}
- /*]]>*/
- </style>
- <style type="text/css" media="print">
- /*<![CDATA[*/
- {$css_style_print}
- /*]]>*/
- </style>
- <script type="text/javascript">
- {literal}
- if ( ( navigator.userAgent.toLowerCase().indexOf('msie') != -1 ) && ( navigator.userAgent.toLowerCase().indexOf( 'opera' ) == -1 ) ) {
- window.attachEvent( 'onunload', function() {
- window['__flash__removeCallback'] = function ( instance, name ) {
- try {
- if ( instance ) {
- instance[name] = null ;
- }
- } catch ( flashEx ) {
- }
- } ;
- });
- }
- {/literal}
-
- var ajax_url = '{$_p.web_ajax}chat.ajax.php';
- var online_button = '{$online_button}';
- var offline_button ='{$offline_button}';
- </script>
- {$js_file_to_string}
- {$css_file_to_string}
- {$extra_headers}
- {$favico}
- <script type="text/javascript">
- $(document).ready(function(){
- $('.topbar').dropdown();
- $('.ajax').live('click', function() {
- var url = this.href;
- var dialog = $("#dialog");
- if ($("#dialog").length == 0) {
- dialog = $('<div id="dialog" style="display:hidden"></div>').appendTo('body');
- }
-
- dialog.load(
- url,
- {},
- function(responseText, textStatus, XMLHttpRequest) {
- dialog.dialog({
- modal : true,
- width : 540,
- height : 400,
- });
- });
-
- return false;
- });
- });
- </script>
- {$header_extra_content}
|