sapalymahabat/modules/backend/layouts/_custom_styles.htm

15 lines
384 B
HTML
Raw Normal View History

2022-09-28 16:57:31 +00:00
<?php
use Backend\Models\BrandSetting;
use Backend\Models\EditorSetting;
?>
<?php if (BrandSetting::isConfigured() || BrandSetting::isBaseConfigured()): ?>
<style>
<?= BrandSetting::renderCss() ?>
</style>
<?php endif ?>
<?php if (EditorSetting::isConfigured()): ?>
<style>
2023-02-15 15:52:41 +00:00
<?= strip_tags(EditorSetting::renderCss()) ?>
2022-09-28 16:57:31 +00:00
</style>
<?php endif ?>