Slide 33
Slide 33 text
With Symfony Full Stack
class HomepageController extends AbstractController
{
#[Route("/", name: "homepage")]
public function index(): Response
{
$response = $this->sendEarlyHints([
(new Link(href: '/common.css'))->withAttribute('as', 'stylesheet'),
]);
// prepare the contents of the response...
return $this->render('homepage/index.html.twig', response: $response);
}
}