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

35 lines
786 B
PHP
Raw Normal View History

2015-09-22 01:37:04 +02:00
<?php
2016-02-14 17:34:25 +01:00
Theme::charset('UTF-8');
Theme::viewport('width=device-width, initial-scale=1');
Theme::title();
Theme::description();
// CSS files
2015-09-22 01:37:04 +02:00
Theme::css(array(
'pure-min.css',
'grids-responsive-min.css',
'blog.css',
'rainbow.github.css'
));
2016-02-14 17:34:25 +01:00
// Javascript files
2015-09-22 01:37:04 +02:00
Theme::javascript('rainbow.min.js');
2015-03-08 18:02:59 +01:00
2016-02-14 17:34:25 +01:00
// Favicon
2015-09-22 01:37:04 +02:00
Theme::favicon('favicon.png');
2015-05-15 00:07:45 +02:00
?>
2015-03-08 18:02:59 +01:00
2015-09-22 01:37:04 +02:00
<!-- Custom Fonts -->
2015-11-29 00:21:04 +01: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">
2015-09-22 01:37:04 +02:00
2015-05-19 01:22:05 +02:00
<!-- Pure and Google Fonts -->
2015-03-08 18:02:59 +01:00
<style>
2015-09-22 01:37:04 +02:00
html, button, input, select, textarea,
.pure-g [class *= "pure-u"] {
font-family: 'Open Sans', sans-serif;
}
2015-03-08 18:02:59 +01:00
</style>
2015-08-07 00:56:52 +02:00
<!-- Plugins Site Head -->
2016-02-14 17:34:25 +01:00
<?php Theme::plugins('siteHead') ?>