@using TelerikAspNetCoreApp1.Classes @ViewData["Title"] - My Sport Coach @{ string homeImage = "/images/home_64.png"; string navbarColor = "lightyellow"; string navbarTextColor = "black"; string navbarTitle = "My Sport Coach"; string contentColor = "white"; string footerColor = "yellowgreen"; string footerTextColor = "black"; string landingPage = Context.Session.GetString("LandingPage"); if (landingPage != null && landingPage.ToLower().StartsWith("fitkeeper")) { string fitkeeperBlue = "#3065B1"; string fitkeeperBlueTextColor = "lightgray"; string fitkeeperGreen = "#71C25C"; string fitkeeperGreenTextColor = "black"; homeImage = "/images/fitkeeper_logo_small_round.png"; navbarColor = fitkeeperGreen; navbarTextColor = fitkeeperGreenTextColor; //contentColor = "linear-gradient(to bottom, #3065B150 0%, #71C25C50 100%)"; contentColor = "white"; footerColor = fitkeeperBlue; footerTextColor = fitkeeperBlueTextColor; } }
@RenderBody()
@RenderSection("scripts", required: false)