mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-19 06:06:33 +00:00
20 lines
433 B
PHP
20 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()
|
|
);
|
|
}
|
|
}
|