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