mwielgoszewski/doorman

View on GitHub
doorman/templates/404.html

Summary

Maintainability
Test Coverage

{% extends "layout.html" %}

{% block page_title %}Page Not Found{% endblock %}

{% block content %}
<div class="jumbotron">
    <div class="text-center">
        <h1>404</h1>
        <p>Sorry, that page doesn't exist.</p>
    </div>
</div>
{% endblock %}