diff --git a/ProjectLighthouse/Pages/SlotPage.cshtml b/ProjectLighthouse/Pages/SlotPage.cshtml index 221d99f2..f9de969d 100644 --- a/ProjectLighthouse/Pages/SlotPage.cshtml +++ b/ProjectLighthouse/Pages/SlotPage.cshtml @@ -3,8 +3,10 @@ @{ Layout = "Layouts/BaseLayout"; - Model.Title = Model.Slot.Name; Model.ShowTitleInPage = false; + + Model.Title = Model.Slot.Name; + Model.Description = Model.Slot.Description; } @await Html.PartialAsync("Partials/SlotCardPartial", Model.Slot, new ViewDataDictionary(ViewData) diff --git a/ProjectLighthouse/Pages/UserPage.cshtml b/ProjectLighthouse/Pages/UserPage.cshtml index 2ad6916e..6f89c86c 100644 --- a/ProjectLighthouse/Pages/UserPage.cshtml +++ b/ProjectLighthouse/Pages/UserPage.cshtml @@ -8,8 +8,10 @@ @{ Layout = "Layouts/BaseLayout"; - Model.Title = Model.ProfileUser!.Username + "'s user page"; Model.ShowTitleInPage = false; + + Model.Title = Model.ProfileUser!.Username + "'s user page"; + Model.Description = Model.ProfileUser!.Biography; }