aboutsummaryrefslogtreecommitdiffstats
path: root/templates/404.html
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 15:58:01 +0000
committerPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-06 16:55:23 +0000
commit93be8b11720c184092d1b270816ff00e6e698a8c (patch)
treeb2aedaea6faef293214cf010bffdefaf7494f3e5 /templates/404.html
parent5308e03c9e090591ca14c66daa0d959dc9993bd8 (diff)
downloadopenembedded-core-contrib-93be8b11720c184092d1b270816ff00e6e698a8c.tar.gz
Move all templates to a templates directory
This should allow the templates to be found and swapped out more easily. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'templates/404.html')
-rw-r--r--templates/404.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/templates/404.html b/templates/404.html
new file mode 100644
index 0000000000..6c1c1ce432
--- /dev/null
+++ b/templates/404.html
@@ -0,0 +1,26 @@
+{% 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 %}OpenEmbedded metadata index - page not found{% endblock %}
+-->
+
+{% block content %}
+{% autoescape on %}
+
+<p>The page you requested was not found.</p>
+
+<p><a href="{% url layer_list %}">Return to the index</a></p>
+
+{% endautoescape %}
+{% endblock %} \ No newline at end of file