diff --git a/app/controllers/front.php b/app/controllers/front.php index c39246b..e03d7c5 100644 --- a/app/controllers/front.php +++ b/app/controllers/front.php @@ -9,11 +9,4 @@ $front->get('/', function () use ($app) { return $app['twig']->render('index.twig', array('entry' => $entry)); }); -$front->get('/unread', function () use ($app) { - - $entries = $app['entry_api']->getEntries(); - - return $app['twig']->render('index.twig', array('entry' => $entry)); -}); - return $front;