From 5a2d8c52010cdb05607f4e1c3ab83e2b0adc46a2 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 24 Jan 2017 15:40:17 -0700 Subject: [PATCH] Fixed template tag --- routes/admin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/admin/index.js b/routes/admin/index.js index d9731a1af..2a37e8f0f 100644 --- a/routes/admin/index.js +++ b/routes/admin/index.js @@ -15,7 +15,7 @@ router.get('/login', (req, res, next) => { }); router.get('*', (req, res) => { - res.render('ADMIN', {basePath: '/client/coral-admin'}); + res.render('admin', {basePath: '/client/coral-admin'}); }); module.exports = router;