summaryrefslogtreecommitdiff
path: root/templates/not_found_404.tmpl
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-05-03 13:46:02 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-05-03 13:46:02 +0200
commit9b58f57b0cd9893a44c9d4381de4c82626242e94 (patch)
tree125034cf70cd371bb52b4db53f082def7830717b /templates/not_found_404.tmpl
parent399cea0f02b46d2253e5d8aa2a67e8f30271c23b (diff)
downloadaCms-9b58f57b0cd9893a44c9d4381de4c82626242e94.tar.gz
aCms-9b58f57b0cd9893a44c9d4381de4c82626242e94.tar.bz2
added handling for 404 cases (catch all)
Diffstat (limited to 'templates/not_found_404.tmpl')
-rw-r--r--templates/not_found_404.tmpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/not_found_404.tmpl b/templates/not_found_404.tmpl
new file mode 100644
index 0000000..4d7f4e0
--- /dev/null
+++ b/templates/not_found_404.tmpl
@@ -0,0 +1,17 @@
+<% c++ #include "master.hpp" %>
+<% skin view %>
+<% view not_found_404 uses content::master extends master %>
+
+<% template title() %>
+ <% include master::title() %> :: Not Found
+<% end %>
+
+<% template page_content() %>
+ <div>
+ We are sorry to inform you that somebody run away with
+ your page at URL <%= url %>.
+ </div>
+<% end template %>
+
+<% end view %>
+<% end skin %>