<?php
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
|
/**
|
* Outputs a css file as an inline style
|
* @param string $filename
|
*
|
* @return void
|
*/
|
function jvbInlineStyles(string $filename):void
|
{
|
echo '<style id="'.$filename.'">';
|
include JVB_DIR . '/assets/css/'.$filename.'.min.css';
|
echo '</style>';
|
}
|
|
/**
|
* Shortcut to output the nav styles
|
* @return void
|
*/
|
function jvbInlineNavStyles():void
|
{
|
jvbInlineStyles('nav');
|
}
|