diff options
author | metamuffin <metamuffin@yandex.com> | 2022-01-23 13:41:49 +0100 |
---|---|---|
committer | metamuffin <metamuffin@yandex.com> | 2022-01-23 13:41:49 +0100 |
commit | 31d5bbebccd4ba7537a368db0bdcbfa4e68c77b7 (patch) | |
tree | 1d20489654d0e105db26b989c983212f42dad2f8 | |
parent | 323d176d990ad5448f06d14b09f0a3a7a866f734 (diff) | |
download | metamuffin-website-31d5bbebccd4ba7537a368db0bdcbfa4e68c77b7.tar metamuffin-website-31d5bbebccd4ba7537a368db0bdcbfa4e68c77b7.tar.bz2 metamuffin-website-31d5bbebccd4ba7537a368db0bdcbfa4e68c77b7.tar.zst |
added services page
-rw-r--r-- | source/index.ts | 1 | ||||
-rw-r--r-- | views/layout.pug | 1 | ||||
-rw-r--r-- | views/services.pug | 11 |
3 files changed, 13 insertions, 0 deletions
diff --git a/source/index.ts b/source/index.ts index f74bb94..72d1185 100644 --- a/source/index.ts +++ b/source/index.ts @@ -23,6 +23,7 @@ router.get("/about", c => render(c.response, c.request, "about")) router.get("/projects", c => render(c.response, c.request, "projects")) router.get("/contact", c => render(c.response, c.request, "contact")) router.get("/links", c => render(c.response, c.request, "links")) +router.get("/services", c => render(c.response, c.request, "services")) router.get("/licence", async ({ response }) => { const content = await Deno.readTextFile("LICENCE") diff --git a/views/layout.pug b/views/layout.pug index c79a93b..f608c1d 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -13,6 +13,7 @@ html(lang="en") nav ul li: a(href="/about") about + li: a(href="/services") services li: a(href="/projects") projects li: a(href="/links") links li: a(href="/contact") contact diff --git a/views/services.pug b/views/services.pug new file mode 100644 index 0000000..24221ea --- /dev/null +++ b/views/services.pug @@ -0,0 +1,11 @@ +//- SPDX-License-Identifier: AGPL-3.0-only +extends layout + +block content + h2 services + p metamuffin.org offers some free and gratis services. please only use these services to an extent that does not interfer with usage of others and the servers performance. + ul + li #[a(href="https://lsvp.metamuffin.org") lsvp.metamuffin.org] - libresyncedvideoplayer + li #[a(href="https://meet.metamuffin.org") meet.metamuffin.org] - keks-meet + + p if you have any suggestions on how to extent the range of services provided, #[a(href="./contact") contact me]. |