mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-12 23:08:40 +00:00
Implement pride logo & necessary configuration options (#780)
* Implement pride logo as well as needed configuration option * Potentially fix issue with icons not rendering * Fix login form icon and remove unused image from PasswordResetPage
This commit is contained in:
parent
2609ec8407
commit
572c942ee8
6 changed files with 15 additions and 4 deletions
|
@ -89,7 +89,9 @@
|
|||
|
||||
<a class="item home-logo" href="/">
|
||||
<img src="~/logo-mono.png" alt="Home" class="logo-mono"/>
|
||||
<img src="~/logo-color.png" alt="Home" class="logo-color"/>
|
||||
<img src="~/@(ServerConfiguration.Instance.WebsiteConfiguration.PrideEventEnabled && DateTime.Now.Month == 6 ? "logo-pride.png" : "logo-color.png")"
|
||||
alt="Home"
|
||||
class="logo-color"/>
|
||||
</a>
|
||||
@foreach (PageNavigationItem navigationItem in Model.NavigationItems)
|
||||
{
|
||||
|
|
|
@ -43,7 +43,10 @@
|
|||
|
||||
<div class="column">
|
||||
<h2 class="ui black image header centered">
|
||||
<img src="~/logo-color.png" class="image" style="width: 128px;">
|
||||
<img src="~/@(ServerConfiguration.Instance.WebsiteConfiguration.PrideEventEnabled && DateTime.Now.Month == 6 ? "logo-pride.png" : "logo-color.png")"
|
||||
alt="Instance logo"
|
||||
class="image"
|
||||
style="width: 128px;"/>
|
||||
<div class="content">
|
||||
@Model.Title
|
||||
</div>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
@page "/passwordReset"
|
||||
@using LBPUnion.ProjectLighthouse.Configuration
|
||||
@using LBPUnion.ProjectLighthouse.Localization.StringLists
|
||||
@model LBPUnion.ProjectLighthouse.Servers.Website.Pages.Login.PasswordResetPage
|
||||
|
||||
|
@ -40,7 +41,6 @@
|
|||
|
||||
<div class="column">
|
||||
<h2 class="ui black image header centered">
|
||||
<img src="~/logo-color.png" class="image" style="width: 128px;">
|
||||
<div class="content">
|
||||
@Model.Title
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue