This repository has been archived on 2025-05-14. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
452 B
Plaintext

@namespace Oqtane.Themes.Controls
@inherits ThemeControlBase
@((MarkupString)logo)
@code {
string logo = "";
protected override Task OnParametersSetAsync()
{
if (PageState.Site.Logo != "")
{
logo = "<a href=\"" + PageState.Alias.Url + "\"><img src=\"" + PageState.Alias.SiteRootUrl + PageState.Site.Logo + "\" alt=\"" + PageState.Site.Name + "\"/></a>";
}
return Task.CompletedTask;
}
}