wallabag/src/WallabagBundle/Controller/StaticController.php

21 lines
424 B
PHP
Raw Normal View History

2015-01-23 11:45:24 +00:00
<?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()
);
}
}