@using LinkDotNet.Blog.Domain @using LinkDotNet.Blog.Web.Features.SupportMe.Components @inject IOptions Introduction @inject IOptions Social @inject IOptions SupportConfiguration
@MarkdownConverter.ToMarkupString(Introduction.Value.Description)
@if (SupportConfiguration.Value.ShowUnderIntroduction) { }
@code { private string IntroductionClass => !string.IsNullOrEmpty(Introduction.Value.BackgroundUrl) ? "introduction-background" : string.Empty; private string IntroductionStyle => !string.IsNullOrEmpty(Introduction.Value.BackgroundUrl) ? $"background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url({Introduction.Value.BackgroundUrl})" : string.Empty; }