summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/minimal/error.404.tpl.php
diff options
context:
space:
mode:
authorGravatar buckaroo-labs2023-12-20 21:39:10 -0800
committerGravatar buckaroo-labs2023-12-20 21:39:10 -0800
commit78b989f29004fab78946e8606b6b9a752efcd4dc (patch)
tree639ce4be42cc446daa3d372d684a168a29594168 /data/templates/minimal/error.404.tpl.php
parenta89a4c07b811ceda200c7913d9629466f345d674 (diff)
downloadscuttle-78b989f29004fab78946e8606b6b9a752efcd4dc.tar.gz
scuttle-78b989f29004fab78946e8606b6b9a752efcd4dc.zip
add 'minimal' theme
Diffstat (limited to 'data/templates/minimal/error.404.tpl.php')
-rw-r--r--data/templates/minimal/error.404.tpl.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/data/templates/minimal/error.404.tpl.php b/data/templates/minimal/error.404.tpl.php
new file mode 100644
index 0000000..fe9401d
--- /dev/null
+++ b/data/templates/minimal/error.404.tpl.php
@@ -0,0 +1,9 @@
+<?php
+header('HTTP/1.x 404 Not Found');
+$this->includeTemplate($GLOBALS['top_include']);
+if (!$error) {
+ echo '<h1>'. T_('Not Found') .'</h1>';
+ echo '<p>'. T_('The requested URL was not found on this server') .'</p>';
+}
+$this->includeTemplate($GLOBALS['bottom_include']);
+?> \ No newline at end of file