Project

General

Profile

1
<?php
2
/**
3
* @package   yoo_solar
4
* @author    YOOtheme http://www.yootheme.com
5
* @copyright Copyright (C) YOOtheme GmbH
6
* @license   http://www.gnu.org/licenses/gpl.html GNU/GPL
7
*/
8

    
9
// no direct access
10
defined('_JEXEC') or die('Restricted access');
11

    
12
// get html head data
13
$head = $this->getHeadData();
14

    
15
// remove deprecated meta-data (html5)
16
unset($head['metaTags']['http-equiv']);
17
unset($head['metaTags']['standard']['title']);
18
unset($head['metaTags']['standard']['rights']);
19
unset($head['metaTags']['standard']['language']);
20

    
21
$this->setHeadData($head);
22

    
23
?>
24
<!DOCTYPE HTML>
25
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
26
<head>
27
	<meta charset="<?php echo $this->getCharset(); ?>" />
28
	<jdoc:include type="head" />
29
</head>
30
<body class="contentpane">
31
	<jdoc:include type="message" />
32
	<jdoc:include type="component" />
33
</body>
34
</html>
(4-4/16)