@model Slide @{ Layout = null; var bgStyle = $"background: {Model.BackgroundColor ?? "#1a1a2e"};"; if (!string.IsNullOrEmpty(Model.BackgroundImage)) { bgStyle += $" background-image: url('{Model.BackgroundImage}'); background-size: {Model.BackgroundSize ?? "cover"}; background-position: center; background-repeat: no-repeat;"; } } Preview: @Model.Name Close @if (Model.SlideType == SlideType.Content) {
@Html.Raw(Model.Content ?? "")
} else if (Model.SlideType == SlideType.Embed) { } else if (Model.SlideType == SlideType.IcsCalendar) {

Upcoming Events

Loading calendar...

}