31 lines
881 B
PHP
31 lines
881 B
PHP
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<link href="//fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
|
|
<meta name="author" content="Bludit CMS">
|
|
|
|
<!-- Dynamic title tag -->
|
|
<?php echo Theme::metaTags('title'); ?>
|
|
|
|
<!-- Dynamic description tag -->
|
|
<?php echo Theme::metaTags('description'); ?>
|
|
|
|
<!-- Include Favicon -->
|
|
<?php echo Theme::favicon('img/favicon.png'); ?>
|
|
|
|
<!-- Include Bootstrap CSS file bootstrap.css -->
|
|
<?php echo Theme::cssBootstrap(); ?>
|
|
|
|
<!-- Include CSS Styles from this theme -->
|
|
<?php echo Theme::css('css/style.css'); ?>
|
|
<?php echo Theme::css('css/bludit.css'); ?>
|
|
|
|
<?php
|
|
echo '<!--[if lt IE 9]>';
|
|
echo Theme::js('js/respond.min.js');
|
|
echo '<![endif]-->';
|
|
?>
|
|
|
|
<!-- Load Bludit Plugins: Site head -->
|
|
<?php Theme::plugins('siteHead'); ?>
|