aboutsummaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: 5bd5f750ac0b32730cd1ee4f577e556a087e8da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% 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 %}