bludit/bl-themes/lingonberry/php/head.php
Hakim Zulkufli 6b08a04a5c More Lingonberry updates. Should be fully usable now.
Plugins not tested.
Sitebar plugins will never work as before. (Not included in the theme.)
2017-08-07 16:42:56 +08:00

22 lines
586 B
PHP

<?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();
echo Theme::css(array(
'css/style.css',
'css/bludit.css'
));
echo Theme::js(array(
'js/jquery-1.12.0.min.js',
'js/jquery-migrate-1.2.1.min.js'
));
echo '<link href="https://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');
?>