Files
wallabag/src/WallabagBundle/Controller/DefaultController.php

18 lines
375 B
PHP
Raw Normal View History

2015-01-22 08:30:07 +01:00
<?php
namespace WallabagBundle\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class DefaultController extends Controller
{
/**
* @Route("/app/index", name="homepage")
*/
public function indexAction()
{
return $this->render('default/index.html.twig');
}
}