From c4160081a1dc46627c8be32c3964678ee8572485 Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Sun, 2 Nov 2025 00:13:59 -0500 Subject: [PATCH] feat: custom 500 page --- .../TwigBundle/Exception/error.html.twig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 templates/bundles/TwigBundle/Exception/error.html.twig diff --git a/templates/bundles/TwigBundle/Exception/error.html.twig b/templates/bundles/TwigBundle/Exception/error.html.twig new file mode 100644 index 0000000..f460a97 --- /dev/null +++ b/templates/bundles/TwigBundle/Exception/error.html.twig @@ -0,0 +1,17 @@ +{% extends 'bare.html.twig' %} + +{% block body %} +

{{ }}

+
+
+

Oh crap!

+ (or is it?) +
+

There are many things I'm capable of, but this ain't one of 'em!

+
+            
+                {{ exception.message }}
+            
+        
+
+{% endblock %}