@namespace Oqtane.Themes.Controls
@inherits ThemeControlBase
@if (PageState.Site.LogoFileId != null)
{
}
else
{
if (UseSiteNameAsFallback)
{
@PageState.Site.Name
}
}
@code {
[Parameter]
public bool UseSiteNameAsFallback { get; set; } = false; // indicates if the site name should be displayed in scenarios where a site does not have a logo defined
}