aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/WallabagBundle/Controller/StaticController.php
blob: aee2bb7ea0ec021d05a9b1675347031772898017 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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()
        );
    }
}