evorepo/templates/404.html
Dan McGee 8777ccf001 Fix up HTML titles on a lot of pages
We didn't include them on many pages, or the ones we did weren't always
useful. Also try to keep the boilerplate to a minimum so you can see the
important bits in the title. 'Arch Linux - ' comes first in all titles, and
from there it can be filled in with something useful.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-03-01 21:43:52 -06:00

11 lines
232 B
HTML

{% extends "base.html" %}
{% 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>
{% endblock %}