1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-21 01:10:39 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

页面调整,添加状态检测

This commit is contained in:
2022-03-14 09:03:15 +08:00
parent da4aaa0c91
commit 0ebbf5fc3a
20 changed files with 447 additions and 111 deletions

View File

@@ -20,10 +20,22 @@ router.get('/category', function (req, res) {
});
});
router.get('/book', function (req, res) {
res.render('book', {
title: "书籍详情"
});
});
router.get('/about', function (req, res) {
res.render('about', {
title: "关于"
});
});
router.get('/status', function (req, res) {
res.render('status', {
title: "网站状态检测"
});
});
module.exports = router;