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

17 lines
384 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');
// CSS
echo Theme::css('assets/css/main.css');
// Load plugins with the hook siteHead
Theme::plugins('siteHead');
?>