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

20 lines
423 B
PHP

<?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');
// FontAwesome from Bludit Core
echo Theme::fontAwesome();
// CSS
echo Theme::css('assets/css/main.css');
// Load plugins
Theme::plugins('siteHead');
?>