예제 #1
0
 public function indexAction()
 {
     $posts = Post::findAll('ORDER BY created_at DESC');
     return new Response('index.html', array('posts' => $posts));
 }