review/templates/404.html @ 62247513862f

web: add nice error pages
author Steve Losh <steve@stevelosh.com>
date Sat, 10 Jul 2010 14:23:00 -0400
parents (none)
children (none)
{% extends "base.html" %}

{% block id %}404{% endblock %}
{% block title %}Page not found - {% endblock %}

{% block content %}
    <h2>Page not found (404)</h2>
    <p>The page you requested could not be found. <a href="/">Go home</a>.</p>
{% endblock %}