12 lines
164 B
PHP
12 lines
164 B
PHP
<?php
|
|
/**
|
|
* The template for the 404 page
|
|
*/
|
|
|
|
namespace App;
|
|
|
|
use Timber\Timber;
|
|
|
|
$context = Timber::context();
|
|
Timber::render( 'templates/404.twig', $context );
|