diff --git a/tldtest/templates/404.html b/tldtest/templates/404.html
new file mode 100644
index 0000000..e6be426
--- /dev/null
+++ b/tldtest/templates/404.html
@@ -0,0 +1,5 @@
+{% extends "base.html" %}
+{% block title %}Error 404{% endblock %}
+{% block content %}
+
+{% endblock content %}
diff --git a/tldtest/templates/500.html b/tldtest/templates/500.html
new file mode 100644
index 0000000..8446050
--- /dev/null
+++ b/tldtest/templates/500.html
@@ -0,0 +1,5 @@
+{% extends "base.html" %}
+{% block title %}Error 404{% endblock %}
+{% block content %}
+
+{% endblock content %}
diff --git a/tldtest/views.py b/tldtest/views.py
index da5ec29..a7fab18 100644
--- a/tldtest/views.py
+++ b/tldtest/views.py
@@ -6,12 +6,9 @@ class Index(TemplateView):
template_name = 'home.html'
-"""
def handler404(request):
return render(request, '404.html', status=404)
def handler500(request):
return render(request, '500.html', status=500)
-
-"""