forked from wallabag/wallabag
toggle archive / fav actions
This commit is contained in:
20
src/WallabagBundle/Controller/StaticController.php
Normal file
20
src/WallabagBundle/Controller/StaticController.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace WallabagBundle\Controller;
|
||||
|
||||
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
|
||||
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
||||
|
||||
class StaticController extends Controller
|
||||
{
|
||||
/**
|
||||
* @Route("/about", name="about")
|
||||
*/
|
||||
public function aboutAction()
|
||||
{
|
||||
return $this->render(
|
||||
'WallabagBundle:Static:about.html.twig',
|
||||
array()
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user