Added alerts functionality + modal UI

This commit is contained in:
NGPixel
2016-08-23 21:09:09 -04:00
parent aa740dea7a
commit 52c9821189
13 changed files with 206 additions and 14 deletions

View File

@@ -15,7 +15,7 @@ router.get('/', (req, res) => {
let pageData = mark.parse(contents);
if(!pageData.title) {
pageData.title = 'Redis';
pageData.subtitle = 'An open source, in-memory data structure store, used as database, cache and message broker.'
pageData.subtitle = 'An open source, in-memory data structure store, used as database, cache and message broker.';
}
res.render('pages/view', { pageData });
});