Browse Source
Don't render styles & script when not configured
pull/17681/head
Enis Necipoglu
3 years ago
No known key found for this signature in database
GPG Key ID: 1EC55E13241E1680
1 changed files with
12 additions and
7 deletions
-
modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/Public/CmsKit/Pages/Index.cshtml
|
|
|
@ -7,16 +7,21 @@ |
|
|
|
@section styles{ |
|
|
|
|
|
|
|
<abp-style src="/Pages/Public/CmsKit/Pages/index.css" /> |
|
|
|
|
|
|
|
<style> |
|
|
|
@Html.Raw(Model.ViewModel.Style) |
|
|
|
</style> |
|
|
|
@if (!Model.ViewModel.Style.IsNullOrEmpty()) |
|
|
|
{ |
|
|
|
<style> |
|
|
|
@Html.Raw(Model.ViewModel.Style) |
|
|
|
</style> |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@section scripts{ |
|
|
|
<script> |
|
|
|
@Html.Raw(Model.ViewModel.Script) |
|
|
|
</script> |
|
|
|
@if (!Model.ViewModel.Script.IsNullOrEmpty()) |
|
|
|
{ |
|
|
|
<script> |
|
|
|
@Html.Raw(Model.ViewModel.Script) |
|
|
|
</script> |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
<abp-card> |
|
|
|
|