summaryrefslogtreecommitdiff
path: root/src/_components
diff options
context:
space:
mode:
Diffstat (limited to 'src/_components')
-rw-r--r--src/_components/footer.vto78
-rw-r--r--src/_components/head.vto8
-rw-r--r--src/_components/nav.vto9
3 files changed, 0 insertions, 95 deletions
diff --git a/src/_components/footer.vto b/src/_components/footer.vto
deleted file mode 100644
index 47ee617..0000000
--- a/src/_components/footer.vto
+++ /dev/null
@@ -1,78 +0,0 @@
-<footer class="text-xs text-subtext1 my-10 text-right space-y-2">
- <div class="hidden md:flex flex-wrap justify-around">
- <img
- src="/imgs/gifs/acab.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="ACAB!"
- >
- <img
- src="/imgs/gifs/arnold.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="Hey Arnold!"
- >
- <img
- src="/imgs/gifs/capitalism.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="Let's crush capitalism!"
- />
- <img
- src="/imgs/gifs/legalize.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="Legalize marijuana now!"
- >
- <a href="https://github.com/sakecode">
- <!--
- Powered by NixOS © 2023 by Sake is licensed under (CC BY-NC-SA 4.0)
- To view the source visit: https://github.com/sakecode/Sake-s-SVGs
- To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/4.0/
- -->
- <img
- src="/imgs/gifs/poweredbynix.svg"
- width="88"
- height="31"
- decoding="async"
- alt="Powered by NixOS"
- />
- </a>
- <img
- src="/imgs/gifs/pride.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="LGBTQ Pride now!"
- />
- <a href="https://dnsense.pub/">
- <img
- src="/imgs/gifs/steam.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="Play on Steam!"
- />
- </a>
- <img
- src="/imgs/gifs/weezer.gif"
- width="88"
- height="31"
- loading="lazy"
- decoding="async"
- alt="Weezer fan"
- />
- </div>
-
- <p>Served from commit {{ gitCommit }} (<a href="https://github.com/getchoo/website">source</a>)</p>
-</footer>
diff --git a/src/_components/head.vto b/src/_components/head.vto
deleted file mode 100644
index 551ca45..0000000
--- a/src/_components/head.vto
+++ /dev/null
@@ -1,8 +0,0 @@
-<head>
- <meta charset="UTF-8" />
- <title>{{ title }}</title>
- <meta name="viewport" content="width=device-width,initial-scale=1" />
- <meta name="description" content={{ description }} />
- <link rel="stylesheet" href="/global.css" />
- <link rel="sitemap" href="/sitemap.xml" />
-</head>
diff --git a/src/_components/nav.vto b/src/_components/nav.vto
deleted file mode 100644
index c159e14..0000000
--- a/src/_components/nav.vto
+++ /dev/null
@@ -1,9 +0,0 @@
-<nav class="space-y-5 text-xl my-5">
- <p>
- {{ for item of links }}
- <a href={{ item.url }}>{{ item.name }}</a>
- {{ /for }}
- </p>
-
- <hr>
-</nav>