2016-05-18 04:36:23 +02:00
|
|
|
<?php
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::charset('utf-8');
|
|
|
|
echo Theme::viewport('width=device-width, initial-scale=1');
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::headTitle();
|
|
|
|
echo Theme::headDescription();
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::favicon('img/favicon.png');
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo '<!--[if lt IE 8]>';
|
|
|
|
echo Theme::js('assets/js/ie/html5shiv.js');
|
|
|
|
echo '<![endif]-->';
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::css('assets/css/main.css');
|
|
|
|
|
|
|
|
echo '<!--[if lt IE 9]>';
|
|
|
|
echo Theme::css('assets/css/ie9.css');
|
|
|
|
echo '<![endif]-->';
|
|
|
|
|
|
|
|
echo '<!--[if lt IE 8]>';
|
|
|
|
echo Theme::css('assets/css/ie8.css');
|
|
|
|
echo '<![endif]-->';
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::css('assets/css/bludit.css');
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
echo Theme::fontAwesome();
|
2016-05-18 04:36:23 +02:00
|
|
|
|
2017-07-23 23:31:39 +02:00
|
|
|
Theme::plugins('siteHead');
|
2016-05-18 04:36:23 +02:00
|
|
|
?>
|