19 lines
516 B
Plaintext
19 lines
516 B
Plaintext
@using Microsoft.AspNetCore.Components.Web
|
|
@using Oqtane.Themes
|
|
@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;
|
|
}
|
|
} |