aboutsummaryrefslogtreecommitdiff
path: root/app/Routes.php
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2018-10-22 01:40:37 -0400
committerThedro Neely <thedroneely@gmail.com>2018-10-22 01:40:37 -0400
commit7468c75c54cb1971f13e0a5eda9f63cf77b3bc4b (patch)
tree78b326971c158068da4bd429cfb45a6a842232ad /app/Routes.php
parent73a342e951776dc48208ebbc1cb2a0796b8b90ac (diff)
downloadthedroneely.com-7468c75c54cb1971f13e0a5eda9f63cf77b3bc4b.tar.gz
thedroneely.com-7468c75c54cb1971f13e0a5eda9f63cf77b3bc4b.tar.bz2
thedroneely.com-7468c75c54cb1971f13e0a5eda9f63cf77b3bc4b.zip
app: Add resume page and controller
Diffstat (limited to 'app/Routes.php')
-rw-r--r--app/Routes.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Routes.php b/app/Routes.php
index 2def144..7b73137 100644
--- a/app/Routes.php
+++ b/app/Routes.php
@@ -6,6 +6,8 @@ $router->get('', '../app/controllers/index.controller.php');
$router->get('contact', '../app/controllers/contact.controller.php');
+$router->get('resume', '../app/controllers/resume.controller.php');
+
$router->head('', '../app/controllers/index.controller.php');