mainsite/templates/404.html
{% extends 'base.html' %}
{% load staticfiles %}
{% block title_block %}
<title>404 Not Found</title>
{% endblock %}
{% block body_block %}
<div class="vertical-center">
<p><img src="{% static '404.jpg' %}"></p>
<p>Sorry, we cannot find this page for you. Did you mistype the url? Or perhaps follow an older link? </p>
</div>
{% endblock %}