Merge pull request #1295 from wallabag/v2-howto

add howto page
This commit is contained in:
Jeremy Benoist
2015-08-10 14:15:11 +02:00
5 changed files with 120 additions and 0 deletions

View File

@ -7,6 +7,16 @@ use Symfony\Bundle\FrameworkBundle\Controller\Controller;
class StaticController extends Controller
{
/**
* @Route("/howto", name="howto")
*/
public function howtoAction()
{
return $this->render(
'WallabagCoreBundle:Static:howto.html.twig',
array()
);
}
/**
* @Route("/about", name="about")
*/