diff options
| author | seth <[email protected]> | 2024-02-12 07:51:32 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2024-02-12 08:51:36 -0500 |
| commit | 19b01bff4c251722d4739f6dca208497877f7cbb (patch) | |
| tree | 31918495004c9386760afbac6853c9e7668093c1 /src/_components | |
| parent | ec2b378c8d7885290db2d526364eb59512e60d0e (diff) | |
actually kinda try this time
Diffstat (limited to 'src/_components')
| -rw-r--r-- | src/_components/footer.vto | 83 | ||||
| -rw-r--r-- | src/_components/head.vto | 5 | ||||
| -rw-r--r-- | src/_components/nav.vto | 20 |
3 files changed, 86 insertions, 22 deletions
diff --git a/src/_components/footer.vto b/src/_components/footer.vto index 6c262f1..9c81595 100644 --- a/src/_components/footer.vto +++ b/src/_components/footer.vto @@ -1,9 +1,78 @@ -<div class="flex"> - <div class="flex flex-col items-center gap-1 p-3 mx-auto"> - <a - class="text-text text-xs" - href="https://github.com/getchoo/website">source</a +<footer class="text-xs text-overlay0 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!" > - <p class="text-text text-xs">commit: {{ gitCommit }}</p> + <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> -</div> + + <p>Served from commit {{ gitCommit }} (<a class="text-overlay0" href="https://github.com/getchoo/website">source</a>)</p> +</footer> diff --git a/src/_components/head.vto b/src/_components/head.vto index 50af97a..551ca45 100644 --- a/src/_components/head.vto +++ b/src/_components/head.vto @@ -1,9 +1,8 @@ <head> - <meta charset="utf-8" /> - <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta charset="UTF-8" /> <title>{{ title }}</title> + <meta name="viewport" content="width=device-width,initial-scale=1" /> <meta name="description" content={{ description }} /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> <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 index f1d935a..c159e14 100644 --- a/src/_components/nav.vto +++ b/src/_components/nav.vto @@ -1,13 +1,9 @@ -<nav> - <div class="flex flex-column justify-center mx-auto p-7"> - <ul class="inline"> - {{ for item of links }} - <li class="inline text-base p-2"> - <a class="rounded-xl bg-yellow p-2" href={{ item.url }}> - {{ item.name }} - </a> - </li> - {{ /for }} - </ul> - </div> +<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> |
