public IActionResult Index() { ViewData["title"] = "Microserver"; ViewData["image"] = "<img src='/assets/img/ocean.jpg' class='rounded'>"; ViewData.Show("has-image"); ViewData.Child("header")["content"] = "<h3>Shared Header Content</h3>"; ViewData.Bind( new PlayerModel() { TeamId = 288272, PlayerName = "Nazem Kadri", Points = 18, Goals = 10, Assists = 16 }); return(View(@"views\home\index.html")); }