bludit/bl-themes/story/php/head.php

20 lines
423 B
PHP
Raw Normal View History

2017-10-04 23:42:14 +02:00
<?php
echo Theme::charset('utf-8');
echo Theme::viewport('width=device-width, initial-scale=1');
// Title and description
echo Theme::headTitle();
echo Theme::headDescription();
// Favicon
echo Theme::favicon('assets/favicon.png');
2017-10-08 16:58:59 +02:00
// FontAwesome from Bludit Core
echo Theme::fontAwesome();
2017-10-04 23:42:14 +02:00
// CSS
echo Theme::css('assets/css/main.css');
2017-10-08 16:58:59 +02:00
// Load plugins
2017-10-04 23:42:14 +02:00
Theme::plugins('siteHead');
?>