Skip to content

Commit

Permalink
404 and 500 pages with new design.
Browse files Browse the repository at this point in the history
  • Loading branch information
asendecka committed Nov 18, 2014
1 parent de1daf9 commit e9785f4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 5 additions & 3 deletions templates/404.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{% extends "base_2col.html" %}
{% extends 'base.html' %}

{% block title %}Page not found{% endblock %}

{% block content %}
{% block layout_class %}full-width{% endblock %}

{% block header %}<h1>404</h1>{% endblock %}

<h2>Page not found</h2>
{% block content %}

<p>Looks like you followed a bad link. If you think it's our fault, please <a href="https://code.djangoproject.com/">let us know</a>.</p>

Expand Down
6 changes: 5 additions & 1 deletion templates/500.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
{% extends "base_2col.html" %}
{% extends 'base.html' %}

{% block title %}Page unavailable{% endblock %}

{% block layout_class %}full-width{% endblock %}

{% block header %}<h1>500</h1>{% endblock %}

{% block content %}

<h2>Page unavailable</h2>
Expand Down

0 comments on commit e9785f4

Please sign in to comment.