koblog/bl-themes/blogx/php/head.php

33 lines
1.1 KiB
PHP
Raw Normal View History

<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2019-02-01 17:59:39 +01:00
<meta name="generator" content="Bludit">
2018-02-01 00:34:16 +01:00
<!-- Generate <title>...</title> -->
<?php echo HTML::metaTagTitle(); ?>
2018-02-01 00:34:16 +01:00
<!-- Generate <meta name="description" content="..."> -->
<?php echo HTML::metaTagDescription(); ?>
2018-02-01 00:34:16 +01:00
<!-- Generate <link rel="icon" href="..."> -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::favicon('img/favicon.png'); ?>
2018-02-01 00:34:16 +01:00
<!-- Include CSS Bootstrap file from Bludit Core -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::cssBootstrap(); ?>
2018-02-01 00:34:16 +01:00
<!-- Include CSS Bootstrap ICONS file from Bludit Core -->
<?php echo HTML::cssBootstrapIcons(); ?>
<!-- Include CSS Styles from this theme -->
2021-03-19 20:48:04 +01:00
<?php echo HTML::css('css/style.css'); ?>
<?php echo HTML::css('css/plugins.css'); ?>
<!-- Enable or disable Google Fonts from theme's settings -->
<?php if ($theme->googleFonts()): ?>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans:sans,bold">
<style>
body { font-family: "Open Sans", sans-serif; }
</style>
<?php endif; ?>
2018-02-01 00:34:16 +01:00
<!-- Execute Bludit plugins for the hook "Site head" -->
<?php execPluginsByHook('siteHead'); ?>