public IActionResult GetIndex() { return(View("Index", articleStore .GetAll() .Reverse() .Take(7))); }
public IActionResult GetSitemap() { Response.ContentType = "application/xml"; return(View("Feeds/Sitemap", articleStore.GetAll())); }