public override ActionResult Index(RssFeedBlock currentBlock)
        {
            var model = new RssFeedBlockViewModel(currentBlock)
            {
                RssFeed = _rssFeedService.Get()
            };

            return(PartialView(model));
        }