forked from wallabag/wallabag
symfony is there
This commit is contained in:
17
src/WallabagBundle/Controller/DefaultController.php
Normal file
17
src/WallabagBundle/Controller/DefaultController.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user