winter/modules/backend/layouts/_custom_styles.htm
Samuel Georges f676f55375 BrandSettings -> BrandSetting
(Models should be singular)
2016-05-27 07:37:49 +10:00

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 ?>