aboutsummaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: 68bd7748819c83a55d659d98aea52ddaebc6b360 (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 %}

  buildhistory-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 warning_list %}">Return to the front page</a></p>

{% endautoescape %}
{% endblock %}