Lingoberry head html
This commit is contained in:
parent
06cc081a59
commit
a8d701becb
|
@ -1,34 +1,21 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" >
|
||||
<meta name="keywords" content="HTML,CSS,XML,JavaScript">
|
||||
<title><?php echo $Site->title() ?></title>
|
||||
|
||||
<?php
|
||||
echo Theme::charset('utf-8');
|
||||
echo Theme::viewport('width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no');
|
||||
|
||||
echo Theme::headTitle();
|
||||
echo Theme::headDescription();
|
||||
|
||||
// CSS
|
||||
echo Theme::css(array(
|
||||
'css/style.css',
|
||||
'css/bludit.css'
|
||||
));
|
||||
|
||||
// Javascript
|
||||
echo Theme::javascript(array(
|
||||
'jquery-1.12.0.min.js',
|
||||
'jquery-migrate-1.2.1.min.js'
|
||||
));
|
||||
// JQuery from Bludit
|
||||
echo Theme::jquery();
|
||||
echo Theme::js('js/jquery-migrate-1.2.1.min.js');
|
||||
|
||||
if($WHERE_AM_I == 'page') {
|
||||
Theme::keywords($Page->tags());
|
||||
Theme::description($Page->description());
|
||||
}
|
||||
echo '<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Raleway:600,500,400" rel="stylesheet" type="text/css">';
|
||||
|
||||
// Load plugins with the hook siteHead
|
||||
Theme::plugins('siteHead');
|
||||
?>
|
||||
|
||||
<!-- Custom Fonts -->
|
||||
<link href="//fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Raleway:600,500,400" rel="stylesheet" type="text/css">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="shortcut icon" href="<?php echo $Site->url() ?>favicon.png" type="image/x-icon">
|
||||
|
||||
<!-- Plugins in Site head -->
|
||||
<?php Theme::plugins('siteHead') ?>
|
Loading…
Reference in New Issue