void Populate()
        {
            PostAuthor.Text = post.author;
            Entry.Text      = post.entry;
            Title           = post.title;

            commentList = new ObservableCollection <Comment>(post.comments);
            CommentsList.ItemsSource = commentList;

            InputLayout.SetClickAction(CreateComment);
        }