diff --git a/routes/categories.js b/routes/categories.js deleted file mode 100644 index f56fe00..0000000 --- a/routes/categories.js +++ /dev/null @@ -1,9 +0,0 @@ -/* - * The purpose of this module is to render the category page when the route is requested - */ - -// Renders categories page when `/categories` route is requested -module.exports.getCategories = async (request, response, next) => { - response.render('categories', { title: 'Categories' }) -} - diff --git a/views/categories.pug b/views/categories.pug deleted file mode 100644 index fe047a3..0000000 --- a/views/categories.pug +++ /dev/null @@ -1,6 +0,0 @@ -extends layout - -block content - .layout-centered - h1= title - p Welcome to #{title}