PHP Classes

File: templates/bundles/TwigBundle/Exception/error500.html.twig

Recommend this page to a friend!
  Classes of Manolo Salsas   Symfony Create Bundle Skeleton   templates/bundles/TwigBundle/Exception/error500.html.twig   Download  
File: templates/bundles/TwigBundle/Exception/error500.html.twig
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Symfony Create Bundle Skeleton
Application to create reusable Symfony Bundles
Author: By
Last change:
Date: 4 years ago
Size: 1,014 bytes
 

Contents

Class file image Download
{# This template is used to render errors of type HTTP 500 (Internal Server Error) This is the simplest way to customize error pages in Symfony applications. In case you need it, you can also hook into the internal exception handling made by Symfony. This allows you to perform advanced tasks and even recover your application from some errors. See https://symfony.com/doc/current/controller/error_pages.html #} {% extends 'base.html.twig' %} {% block stylesheets %} {{ parent() }} <link rel="stylesheet" href="/build/css/app.4aa95248.css"> {% endblock %} {% block body_id 'error' %} {% block main %} <h1 class="text-danger">{{ 'http_error.name'|trans({ '%status_code%': 500 }) }}</h1> <p class="lead"> {{ 'http_error_500.description'|trans }} </p> <p> {{ 'http_error_500.suggestion'|trans({ '%url%': path('blog_index') })|raw }} </p> {% endblock %} {% block sidebar %} {{ parent() }} {{ show_source_code(_self) }} {% endblock %}