aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-09-01 21:09:48 -0400
committerThedro Neely <thedroneely@gmail.com>2021-09-01 21:09:48 -0400
commitb3bb81b41b9d4e9fc9c183cc175ef3a15e515c69 (patch)
tree5e25f4122171aab7c324a13ce09b34ff7baae906
parent63ab760d08730376fd713c2a487ebf7b649712df (diff)
downloadthedroneely.com-b3bb81b41b9d4e9fc9c183cc175ef3a15e515c69.tar.gz
thedroneely.com-b3bb81b41b9d4e9fc9c183cc175ef3a15e515c69.tar.bz2
thedroneely.com-b3bb81b41b9d4e9fc9c183cc175ef3a15e515c69.zip
public: Remove error pages
-rw-r--r--public/error/403.html29
-rw-r--r--public/error/404.html30
2 files changed, 0 insertions, 59 deletions
diff --git a/public/error/403.html b/public/error/403.html
deleted file mode 100644
index 83163ff..0000000
--- a/public/error/403.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php $title = '403 - ' ?>
-
-<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/header.error.php'; ?>
-
-<section class="section hero" itemscope itemtype="http://schema.org/HomePage">
-
- <div class="hero-body">
- <div class="container">
- <div class="columns">
- <div class="column is-8 is-offset-2 has-text-centered">
-
- <h1 class="error__headerSize">403</h1>
-
- <br>
-
- <h2>Error 403 - Forbidden.</h2>
- <p>You cannot access this resource.<p>
-
- <br>
-
- <p>You can head back to the <a href="/">homepage</a>.</p>
-
- </div>
- </div>
- </div>
- </div>
-</section>
-
-<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/footer.php'; ?>
diff --git a/public/error/404.html b/public/error/404.html
deleted file mode 100644
index 1706e10..0000000
--- a/public/error/404.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<?php $title = '404 - ' ?>
-
-<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/header.error.php'; ?>
-
-<section class="section hero" itemscope itemtype="http://schema.org/HomePage">
-
- <div class="hero-body">
- <div class="container">
- <div class="columns">
- <div class="column is-8 is-offset-2 has-text-centered">
-
- <h1 class="error__headerSize">404</h1>
-
- <br>
-
- <h2>Error 404 - Page not found.</h2>
- <p>Check the URL and try again.<p>
-
- <br>
-
- <p>You can head back to the <a href="/">homepage</a>.</p>
-
- </div>
- </div>
- </div>
- </div>
-
-</section>
-
-<?php require $_SERVER['DOCUMENT_ROOT'] . '/..' . '/app/views/partials/footer.php'; ?>