Added about page

This commit is contained in:
2025-05-17 13:43:27 +03:00
parent 8a01233feb
commit d2b606a03a
5 changed files with 52 additions and 0 deletions
+8
View File
@@ -307,4 +307,12 @@ router.get("/", async (req, res) => {
}
});
router.get("/about", (req, res) => {
res.render("about", {
page_title: app_conf.name,
css_path: path.join(app_conf.paths.css.web, "stylesheet.css"),
version: app_conf.version
});
});
module.exports = router;