mirror of
https://github.com/wallabag/wallabag.git
synced 2024-10-31 22:28:54 +00:00
21 lines
424 B
PHP
21 lines
424 B
PHP
|
<?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()
|
||
|
);
|
||
|
}
|
||
|
}
|