Added footer customization
This commit is contained in:
parent
722c56271f
commit
52515e7df1
3 changed files with 62 additions and 13 deletions
|
@ -105,6 +105,26 @@ public class CoreConfiguration
|
|||
|
||||
[JsonProperty("FileManager")]
|
||||
public FileManagerData FileManager { get; set; } = new();
|
||||
|
||||
[JsonProperty("Footer")] public FooterData Footer { get; set; } = new();
|
||||
}
|
||||
|
||||
public class FooterData
|
||||
{
|
||||
[Description("The name of the copyright holder. If this is changed from the default value, an additional 'Software by' will be shown")]
|
||||
public string CopyrightText { get; set; } = "Moonlight Panel";
|
||||
|
||||
[Description("The link of the copyright holders website. If this is changed from the default value, an additional 'Software by' will be shown")]
|
||||
public string CopyrightLink { get; set; } = "https://moonlightpanel.xyz";
|
||||
|
||||
[Description("A link to your 'about us' page. Leave it empty if you want to hide it")]
|
||||
public string AboutLink { get; set; } = "https://moonlightpanel.xyz";
|
||||
|
||||
[Description("A link to your 'privacy' page. Leave it empty if you want to hide it")]
|
||||
public string PrivacyLink { get; set; } = "https://moonlightpanel.xyz";
|
||||
|
||||
[Description("A link to your 'imprint' page. Leave it empty if you want to hide it")]
|
||||
public string ImprintLink { get; set; } = "https://moonlightpanel.xyz";
|
||||
}
|
||||
|
||||
public class FileManagerData
|
||||
|
|
|
@ -1,19 +1,48 @@
|
|||
<div class="app-footer">
|
||||
@using MoonCore.Services
|
||||
@using Moonlight.Core.Configuration
|
||||
|
||||
@inject ConfigService<CoreConfiguration> ConfigService
|
||||
|
||||
@{
|
||||
var config = ConfigService.Get().Customisation.Footer;
|
||||
}
|
||||
|
||||
<div class="app-footer">
|
||||
<div class="app-container container-fluid d-flex flex-column flex-md-row flex-center flex-md-stack py-3 ">
|
||||
<div class="text-gray-900 order-2 order-md-1">
|
||||
<span class="text-muted fw-semibold me-1">2024©</span>
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="text-gray-800 text-hover-primary">Moonlight Panel</a>
|
||||
<span class="text-muted fw-semibold me-1">© @(DateTime.UtcNow.Year)</span>
|
||||
@if (config.CopyrightText == "Moonlight Panel" && config.CopyrightLink == "https://moonlightpanel.xyz")
|
||||
{
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="text-gray-800 text-hover-primary">Moonlight Panel</a>
|
||||
}
|
||||
else
|
||||
{
|
||||
<a href="@config.CopyrightLink" target="_blank" class="text-gray-800 text-hover-primary">@config.CopyrightText</a>
|
||||
<span class="text-muted fw-semibold mx-1">Software by</span>
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="text-gray-800 text-hover-primary">Moonlight Panel</a>
|
||||
}
|
||||
</div>
|
||||
<ul class="menu menu-gray-600 menu-hover-primary fw-semibold order-1">
|
||||
<li class="menu-item">
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="menu-link px-2">About</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="menu-link px-2">Support</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a href="https://moonlightpanel.xyz" target="_blank" class="menu-link px-2">Purchase</a>
|
||||
</li>
|
||||
@if (!string.IsNullOrEmpty(config.AboutLink))
|
||||
{
|
||||
<li class="menu-item">
|
||||
<a href="@config.AboutLink" target="_blank" class="menu-link px-2">About us</a>
|
||||
</li>
|
||||
}
|
||||
|
||||
@if (!string.IsNullOrEmpty(config.PrivacyLink))
|
||||
{
|
||||
<li class="menu-item">
|
||||
<a href="@config.PrivacyLink" target="_blank" class="menu-link px-2">Privacy</a>
|
||||
</li>
|
||||
}
|
||||
|
||||
@if (!string.IsNullOrEmpty(config.ImprintLink))
|
||||
{
|
||||
<li class="menu-item">
|
||||
<a href="@config.ImprintLink" target="_blank" class="menu-link px-2">Imprint</a>
|
||||
</li>
|
||||
}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
|
@ -83,7 +83,7 @@ else
|
|||
</div>
|
||||
<div class="col-md-9 col-12">
|
||||
<div class="card card-body">
|
||||
<div class="row">
|
||||
<div class="row g-5">
|
||||
<LazyLoader @ref="LazyLoader" Load="Load">
|
||||
@foreach (var prop in Properties)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue