{% extends "django_custom_error_views/base.html" %}
{% load static %}
{% block title %}
Page not found
{% endblock title %}
{% block content %}
{% if company_logo %}
{% endif %}
{{ title|default:"OOPS! Page not found." }}
{{ description|default:"Sorry we can't find that page. You can find loads to explore on the home page." }}
{{ extra_content }}
{% if exception and render_exception %}The following exception was raised: {{ exception }}
{% endif %} Return Home {% endblock %}