thestudentlife/Manhattan-Project

View on GitHub
mainsite/templates/404.html

Summary

Maintainability
Test Coverage
{% 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 %}