Browse Source

Ajout erreur 404

François Drouhard 4 years ago
parent
commit
96d12b3a9b
2 changed files with 21 additions and 0 deletions
  1. 14 0
      src/Controller/ErrorController.php
  2. 7 0
      templates/errors/404.html.twig

+ 14 - 0
src/Controller/ErrorController.php

@@ -0,0 +1,14 @@
+<?php
+
+namespace App\Controller;
+
+use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
+
+class ErrorController extends AbstractController
+{
+    public function indexAction() {
+        
+        return $this->render('errors/404.html.twig');
+    }
+
+}

+ 7 - 0
templates/errors/404.html.twig

@@ -0,0 +1,7 @@
+{% extends "base.html.twig" %}
+
+{% block title %}{{ parent() }} - Ajouter un genre{% endblock %}
+{% block titre %}Erreur 404{% endblock %}
+{% block body %}
+   <p>La page demandée n'existe pas, il faut aller voir ailleurs.</p>
+{% endblock %}