koblog/bl-themes/defaultTheme/php/head.php
2025-07-14 11:24:49 +02:00

21 lines
705 B
PHP

<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="generator" content="Koblog">
<!-- Dynamic title tag -->
<?php echo Theme::metaTags('title'); ?>
<!-- Dynamic description tag -->
<?php echo Theme::metaTags('description'); ?>
<!-- Include Favicon -->
<?php echo Theme::favicon('img/favicon.png'); ?>
<!-- Include CSS Styles from this theme -->
<?php echo Theme::css('css/style.css'); ?>
<?php if ($themePlugin->getValue('accentColor') != "default") : ?>
<?php echo Theme::css('css/'.$themePlugin->getValue('accentColor').'.css'); ?>
<?php endif ?>
<!-- Load Koblog Plugins: Site head -->
<?php Theme::plugins('siteHead'); ?>