1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-09-05 18:41:02 +00:00
wallabag/src/WallabagBundle/Controller/StaticController.php

21 lines
424 B
PHP
Raw Normal View History

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