aswi2020sebela-gitlab/website/src/Controller/HomeController.php @ 4fe3c311
1 |
<?php
|
---|---|
2 |
|
3 |
namespace App\Controller; |
4 |
|
5 |
use Symfony\Component\Routing\Annotation\Route; |
6 |
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; |
7 |
|
8 |
class HomeController extends AbstractController { |
9 |
/**
|
10 |
* Home page controller.
|
11 |
*
|
12 |
* @Route("/", name="home")
|
13 |
*/
|
14 |
public function index() { |
15 |
return $this->render('index.html.twig'); |
16 |
}
|
17 |
}
|
- « Předchozí
- 1
- 2
- 3
- Další »