mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:58:24 +01:00
Add link to videos
This commit is contained in:
parent
18cc442f59
commit
151a4701ed
1 changed files with 9 additions and 0 deletions
|
@ -166,6 +166,15 @@ module.exports = function (app, config, renderTemplate) {
|
|||
app.get("/favicon.ico", function (req, res) {
|
||||
res.sendFile("favicon.ico", { root: cssDir });
|
||||
});
|
||||
app.get("/bg-full.webm", function (req, res) {
|
||||
res.sendFile("bg-full.webm", { root: cssDir });
|
||||
});
|
||||
app.get("/bg-720.webm", function (req, res) {
|
||||
res.sendFile("bg-720.webm", { root: cssDir });
|
||||
});
|
||||
app.get("/bg-480.webm", function (req, res) {
|
||||
res.sendFile("bg-480.webm", { root: cssDir });
|
||||
});
|
||||
|
||||
app.get("/css/:id", (req, res) => {
|
||||
const filePath = path.join(cssDir, req.params.id);
|
||||
|
|
Loading…
Reference in a new issue