layerindex-web/templates/404.html
Paul Eggleton 4faeab6595 Add introductory front page
Give the user a friendly introduction instead of plunging them straight
into the layers list. (Of course if people want to link directly to the
layers list they still can.)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2013-03-06 20:13:49 +00:00

29 lines
497 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 %}