List<Post> posts = postService.getLastPostsFor(branch, RECENT_POST_COUNT);
return new ModelAndView("posts/recent")
.addObject("feedTitle", branch.getName())
.addObject("feedDescription", branch.getDescription())
.addObject("urlSuffix", branch.prepareUrlSuffix())
.addObject("posts", posts);
}
/**