-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from Quantility/development
Release: 2.5.0dev
- Loading branch information
Showing
4 changed files
with
62 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,38 @@ | ||
<?php/** * @package Qhtml5 * * @author Quantility * @copyright Copyright (C) 2015. All rights reserved. * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */defined('_JEXEC') or die;$app = JFactory::getApplication();$doc = JFactory::getDocument();$this->language = $doc->language;$this->direction = $doc->direction;// Add JavaScript FrameworksJHtml::_('bootstrap.framework');// Add Stylesheets$doc->addStyleSheet('templates/' . $this->template . '/css/template.css');// Load optional rtl Bootstrap css and Bootstrap bugfixesJHtmlBootstrap::loadCss($includeMaincss = false, $this->direction);?><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"><head><jdoc:include type="head" /><!--[if lt IE 9]> <script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script><![endif]--></head><body class="contentpane modal"> <jdoc:include type="message" /> <jdoc:include type="component" /></body></html> | ||
<?php | ||
/** | ||
* @package Qhtml5 | ||
* | ||
* @author Quantility | ||
* @copyright Copyright (C) 2017. All rights reserved. | ||
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL | ||
*/ | ||
defined('_JEXEC') or die; | ||
|
||
$app = JFactory::getApplication(); | ||
$doc = JFactory::getDocument(); | ||
$this->language = $doc->language; | ||
$this->direction = $doc->direction; | ||
|
||
// Add JavaScript Frameworks | ||
JHtml::_('bootstrap.framework'); | ||
|
||
// Add Stylesheets | ||
$doc->addStyleSheet('templates/' . $this->template . '/css/template.css'); | ||
|
||
// Load optional rtl Bootstrap css and Bootstrap bugfixes | ||
JHtmlBootstrap::loadCss($includeMaincss = false, $this->direction); | ||
|
||
?> | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" dir="<?php echo $this->direction; ?>"> | ||
<head> | ||
<jdoc:include type="head" /> | ||
<!--[if lt IE 9]> | ||
<script src="<?php echo $this->baseurl; ?>/media/jui/js/html5.js"></script> | ||
<![endif]--> | ||
</head> | ||
<body class="contentpane modal"> | ||
<jdoc:include type="message" /> | ||
<jdoc:include type="component" /> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
<?php/** * @package Qhtml5 * * @author Quantility * @copyright Copyright (C) 2015. All rights reserved. * @license http://www.gnu.org/licenses/gpl.html GNU/GPL */?> <script type="application/ld+json">{ "@context": "http://schema.org", "@type": "<?php echo $md_sitetype;?>"}</script> | ||
<?php | ||
/** | ||
* @package Qhtml5 | ||
* | ||
* @author Quantility | ||
* @copyright Copyright (C) 2017. All rights reserved. | ||
* @license http://www.gnu.org/licenses/gpl.html GNU/GPL | ||
*/ | ||
?> | ||
<script type="application/ld+json"> | ||
{ | ||
"@context": "http://schema.org", | ||
"@type": "<?php echo $md_sitetype;?>" | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters