paginate( $postRepository->createPublicFeedPostsQuery(), $request->query->getInt('page', 1), self::POSTS_PER_PAGE ); return $this->render( 'SkobkinPointToolsBundle:Post:feed.html.twig', [ // @todo Move to translation 'feed_title' => 'Public feed', 'posts' => $postsPagination, // Special feed mark (to not show comments and other) 'is_feed' => true, ] ); } }