15 lines
336 B
HTML
15 lines
336 B
HTML
<?php
|
|
use Backend\Models\BrandSetting;
|
|
use Backend\Models\EditorSetting;
|
|
?>
|
|
<?php if (BrandSetting::isConfigured()): ?>
|
|
<style>
|
|
<?= BrandSetting::renderCss() ?>
|
|
</style>
|
|
<?php endif ?>
|
|
<?php if (EditorSetting::isConfigured()): ?>
|
|
<style>
|
|
<?= EditorSetting::renderCss() ?>
|
|
</style>
|
|
<?php endif ?>
|