diff --git a/templates/bundles/TwigBundle/Exception/error404.html.twig b/templates/bundles/TwigBundle/Exception/error404.html.twig new file mode 100644 index 0000000..034036c --- /dev/null +++ b/templates/bundles/TwigBundle/Exception/error404.html.twig @@ -0,0 +1,14 @@ +{% extends theme ~ '/layout.html.twig' %} +{% block title %}{{ 'Not found' | trans }} - {{ name }}{% endblock %} +{% block main_content %} +
+
+

+ 404 +

+
+ {{ 'Requested page not found!' | trans }} +
+
+
+{% endblock %} \ No newline at end of file diff --git a/templates/bundles/TwigBundle/Exception/error500.html.twig b/templates/bundles/TwigBundle/Exception/error500.html.twig new file mode 100644 index 0000000..8567d21 --- /dev/null +++ b/templates/bundles/TwigBundle/Exception/error500.html.twig @@ -0,0 +1,17 @@ +{% extends theme ~ '/layout.html.twig' %} +{% block title %}{{ 'Error' | trans }} - {{ name }}{% endblock %} +{% block main_content %} +
+
+

+ {{ 'Oops!' | trans }} +

+
+ {{ 'Internal server error' | trans }} +
+ + {{ 'Report' | trans }} + +
+
+{% endblock %} \ No newline at end of file