// GET: /Post/ReadMore/1
        public ViewResult ReadMore(int id)
        {
            var post = _helper.GetPost(id);

            if (post == null)
            {
                throw new HttpException(404, "post not found!");
            }

            return(View("ReadMore", post));
        }