public ActionResult Index(string subplatform)
        {
            ViewBag.HeaderText = SubplatformMgr.GetTag("BannerTitle", subplatform).Text;
            ViewBag.Title      = SubplatformMgr.GetSubplatform(subplatform).Name;
            Person person = itemMgr.GetPersons().Where(p => !string.IsNullOrWhiteSpace(p.TwitterName)).OrderByDescending(p => p.TrendingScore).FirstOrDefault();

            ViewBag.TweetName = "https://twitter.com/" + person.TwitterName + "?ref_src=twsrc%5Etfw";
            return(View("Index"));
        }