Project

General

Profile

1 38516 argiro.kok
<?php
2
/**
3
* @package   yoo_bento
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
$doc = JFactory::getDocument();
13
14
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap.min.css');
15
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap-extended.css');
16
$doc->addStyleSheet($this->baseurl . '/media/jui/css/bootstrap-responsive.css');
17
18
// Add JavaScript Frameworks
19
JHtml::_('bootstrap.framework');
20
21
// get html head data
22
$head = $this->getHeadData();
23
24
// remove deprecated meta-data (html5)
25
unset($head['metaTags']['http-equiv']);
26
27
$this->setHeadData($head);
28
29
?>
30
<!DOCTYPE HTML>
31
<html lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>" >
32
<head>
33
    <meta charset="<?php echo $this->getCharset(); ?>">
34
    <jdoc:include type="head" />
35
</head>
36
<body class="contentpane">
37
    <jdoc:include type="message" />
38
    <jdoc:include type="component" />
39
</body>
40
</html>