@Override
 public void onBindViewHolder(PostView holder, int position) {
   final Post post = posts.get(position);
   holder.bindPost(post, position);
 }