mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
15 lines
339 B
HTML
15 lines
339 B
HTML
<?php
|
|
use Backend\Models\BrandSettings;
|
|
use Backend\Models\EditorSetting;
|
|
?>
|
|
<?php if (BrandSettings::isConfigured()): ?>
|
|
<style>
|
|
<?= BrandSettings::renderCss() ?>
|
|
</style>
|
|
<?php endif ?>
|
|
<?php if (EditorSetting::isConfigured()): ?>
|
|
<style>
|
|
<?= EditorSetting::renderCss() ?>
|
|
</style>
|
|
<?php endif ?>
|