layerindex-web/templates/404.html
Paul Eggleton 82266556cd Upgrade to Django 1.6+
I'd like to be upgrading to 1.8 but that causes problems with South, and
we're not quite ready to dispense with our existing migrations yet.

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2016-06-22 16:38:45 -05:00

29 lines
499 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% comment %}
layerindex-web - 404 page template
Copyright (C) 2013 Intel Corporation
Licensed under the MIT license, see COPYING.MIT for details
{% endcomment %}
<!--
{% block title_append %} - page not found{% endblock %}
-->
{% block content %}
{% autoescape on %}
<h1>Page not found</h1>
<p>The page you requested was not found.</p>
<p><a href="{% url 'frontpage' %}">Return to the front page</a></p>
{% endautoescape %}
{% endblock %}