17 lines
312 B
PHP
17 lines
312 B
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use Catalyst\MenuBundle\Annotation\Menu;
|
|
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
|
|
|
|
class HomeController extends Controller
|
|
{
|
|
/**
|
|
* @Menu(selected="home")
|
|
*/
|
|
public function index()
|
|
{
|
|
return $this->render('home.html.twig');
|
|
}
|
|
}
|