templates/bundles/TwigBundle/Exception/error.html.twig line 1

Open in your IDE?
  1. {# templates/bundles/TwigBundle/Exception/error.html.twig #}
  2. {% extends 'base.html.twig' %}
  3. {% block title %}Error{% endblock %}
  4. {% block body %}
  5.     <h1>{{ status_code }} - {{ status_text }}</h1>
  6.     <p>Ocurrió un error inesperado.</p>
  7.     <a href="{{ path('app_start') }}">Volver a la pĆ”gina de inicio</a>
  8. {% endblock %}