diff --git a/project_name/templates/404.html b/project_name/templates/404.html index 15c295c..e80cd62 100644 --- a/project_name/templates/404.html +++ b/project_name/templates/404.html @@ -1 +1,6 @@ -

404 - Not Found

+{% extends "base.html" %} +{% block content %} +

404 - Not Found

+{% endblock %} + + diff --git a/project_name/templates/500.html b/project_name/templates/500.html index 93aa513..ae10ed0 100644 --- a/project_name/templates/500.html +++ b/project_name/templates/500.html @@ -1 +1,6 @@ -

500 - Server Error

+{% extends "base.html" %} +{% block content %} +

500 - Server Error

+{% endblock %} + + diff --git a/project_name/templates/base.html b/project_name/templates/base.html index 5fe0b53..a884fcb 100644 --- a/project_name/templates/base.html +++ b/project_name/templates/base.html @@ -2,9 +2,14 @@ - + Rroject_skel - +
+
+
+ {% block content %} + {% endblock %} +