{post.user?
: null}
{post.postedAt ? moment(new Date(post.postedAt)).fromNow() : }
{!post.commentCount || post.commentCount === 0 ? :
post.commentCount === 1 ? :
}
{this.props.currentUser && this.props.currentUser.isAdmin ?
: null}
{Posts.options.mutations.edit.check(this.props.currentUser, post) ? this.renderActions() : null}