aboutsummaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: a549c41cee5571ee86fb9ab2247bf56149e6ae10 (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
{% extends "base.html" %}
{% load i18n %}

{% comment %}

  git-refinery-web - 404 page template

  Copyright (C) 2014 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 %}