2017-07-28 19:37:06 +02:00
|
|
|
<?php
|
2017-08-06 22:19:21 +02:00
|
|
|
echo Theme::charset('utf-8');
|
|
|
|
echo Theme::viewport('width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no');
|
2017-07-28 19:37:06 +02:00
|
|
|
|
2017-08-06 22:19:21 +02:00
|
|
|
echo Theme::headTitle();
|
|
|
|
echo Theme::headDescription();
|
2017-07-28 19:37:06 +02:00
|
|
|
|
2017-08-06 22:19:21 +02:00
|
|
|
echo Theme::css(array(
|
|
|
|
'css/style.css',
|
|
|
|
'css/bludit.css'
|
2017-07-28 19:37:06 +02:00
|
|
|
));
|
2017-08-06 21:50:01 +02:00
|
|
|
|
2017-08-07 10:42:56 +02:00
|
|
|
echo Theme::js(array(
|
|
|
|
'js/jquery-1.12.0.min.js',
|
|
|
|
'js/jquery-migrate-1.2.1.min.js'
|
|
|
|
));
|
2017-07-28 19:37:06 +02:00
|
|
|
|
2017-08-07 10:42:56 +02:00
|
|
|
echo '<link href="https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Raleway:600,500,400" rel="stylesheet" type="text/css">';
|
2017-07-28 19:37:06 +02:00
|
|
|
|
2017-08-07 10:42:56 +02:00
|
|
|
// Load plugins with the hook siteHead
|
|
|
|
Theme::plugins('siteHead');
|
2017-08-06 22:19:21 +02:00
|
|
|
?>
|