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

28 lines
855 B
PHP
Raw Normal View History

2017-07-09 22:59:54 +02:00
<?php
2017-07-10 23:40:46 +02:00
echo Theme::charset('utf-8');
echo Theme::viewport('width=device-width, initial-scale=1, user-scalable=no');
2017-07-09 22:59:54 +02:00
2017-07-10 23:40:46 +02:00
echo Theme::headTitle();
echo Theme::headDescription();
2017-07-09 22:59:54 +02:00
2017-07-10 23:40:46 +02:00
echo Theme::favicon('img/favicon.png');
2017-07-09 22:59:54 +02:00
2017-07-10 23:40:46 +02:00
echo Theme::css('css/pure-min.css');
echo Theme::css('css/grids-responsive-min.css');
echo Theme::css('css/blog.css');
echo Theme::css('css/rainbow.github.css');
2017-07-09 22:59:54 +02:00
2017-07-10 23:40:46 +02:00
echo Theme::js('js/rainbow.min.js');
// Load plugins with the hook siteHead
Theme::plugins('siteHead');
?>
2017-07-09 22:59:54 +02:00
<!-- Pure and Google Fonts -->
2017-07-10 23:40:46 +02:00
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,cyrillic,latin-ext" rel="stylesheet" type="text/css">
2017-07-09 22:59:54 +02:00
<style>
html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
font-family: 'Open Sans', sans-serif;
}
2017-07-10 23:40:46 +02:00
</style>