diff --git a/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml b/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml index d4e14ade..5395e53f 100644 --- a/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml +++ b/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml @@ -48,10 +48,18 @@ - - - + + + @* Embed Stuff *@ + + + @if (!string.IsNullOrEmpty(Model.Description)) + { + + } + + @* Google Analytics *@ @if (ServerSettings.Instance.GoogleAnalyticsEnabled) { diff --git a/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml.cs b/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml.cs index f7f14670..9f921154 100644 --- a/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml.cs +++ b/ProjectLighthouse/Pages/Layouts/BaseLayout.cshtml.cs @@ -21,6 +21,7 @@ namespace LBPUnion.ProjectLighthouse.Pages.Layouts public bool ShowTitleInPage = true; public string Title = string.Empty; + public string Description = string.Empty; private User? user;