Updated error page semantics

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Thayer Williams 2010-03-16 11:19:29 -07:00 committed by Dan McGee
parent 3be33a91a3
commit dd9f1e3e91
3 changed files with 12 additions and 12 deletions

View File

@ -1,9 +1,9 @@
{% extends "base.html" %}
{% block content %}
<div class="box">
<h2>403 - Access Forbidden</h2>
Sorry, the page you've requested is not available.
</div>
<div id="error-page" class="box 403">
<h2>403 - Access Forbidden</h2>
<p>Sorry, the page you've requested is not available.</p>
</div>
{% endblock %}

View File

@ -2,9 +2,9 @@
{% block title %}Arch Linux - Page Not Found{% endblock %}
{% block content %}
<div class="box">
<h2>404 - Page Not Found</h2>
Sorry, the page you've requested does not exist.
</div>
<div id="error-page" class="box 404">
<h2>404 - Page Not Found</h2>
<p>Sorry, the page you've requested does not exist.</p>
</div>
{% endblock %}

View File

@ -1,9 +1,9 @@
{% extends "base.html" %}
{% block content %}
<div class="box">
<h2>500 - Internal Server Error</h2>
Something has gone horribly wrong. Back away slowly.
</div>
<div id="error-page" class="box 500">
<h2>500 - Internal Server Error</h2>
<p>Something has gone horribly wrong. Back away slowly.</p>
</div>
{% endblock %}