mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 14:08:31 +01:00
add credits easter egg owo!
This commit is contained in:
parent
5a65f36e91
commit
5ca7dc84ef
1 changed files with 4 additions and 0 deletions
|
@ -46,6 +46,10 @@ module.exports = function (app, config, renderTemplate) {
|
|||
renderTemplate(res, req, "license.ejs");
|
||||
});
|
||||
|
||||
app.get("/credits", function (req, res) {
|
||||
renderTemplate(res, req, "want-you-gone.ejs");
|
||||
});
|
||||
|
||||
app.get("/css/:id", (req, res) => {
|
||||
res.sendFile(req.params.id, { root: html_location });
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue