wallabag/src/Wallabag/CoreBundle/Controller/StaticController.php
2015-01-29 16:56:58 +01:00

21 lines
433 B
PHP

<?php
namespace Wallabag\CoreBundle\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(
'WallabagCoreBundle:Static:about.html.twig',
array()
);
}
}