From 67fba5edad38f8a4651a6a782c7abdc696a464ff Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 5 Jul 2024 18:26:55 -0400 Subject: back to lume for the 1000th time --- src/404.vto | 14 +++ src/_components/gif_row.vto | 10 ++ src/_data.yaml | 33 ++++++ src/_includes/base.vto | 10 ++ src/_includes/blogpost.vto | 5 + src/_includes/index.vto | 7 ++ src/_includes/parts/footer.vto | 3 + src/_includes/parts/head.vto | 7 ++ src/_includes/parts/nav.vto | 9 ++ src/index.md | 13 +++ src/static/favicon.ico | Bin 0 -> 15406 bytes src/static/imgs/construction.png | Bin 0 -> 118352 bytes src/static/imgs/gifs/acab.gif | Bin 0 -> 8785 bytes src/static/imgs/gifs/arnold.gif | Bin 0 -> 5046 bytes src/static/imgs/gifs/capitalism.gif | Bin 0 -> 253 bytes src/static/imgs/gifs/legalize.gif | Bin 0 -> 7182 bytes src/static/imgs/gifs/obras.gif | Bin 0 -> 5497 bytes src/static/imgs/gifs/poweredbynix.svg | 187 ++++++++++++++++++++++++++++++++++ src/static/imgs/gifs/pride.gif | Bin 0 -> 17783 bytes src/static/imgs/gifs/steam.gif | Bin 0 -> 2750 bytes src/static/imgs/gifs/web3.gif | Bin 0 -> 483 bytes src/static/imgs/gifs/weezer.gif | Bin 0 -> 24883 bytes src/static/imgs/tapwater.png | Bin 0 -> 358758 bytes src/static/main.css | 70 +++++++++++++ 24 files changed, 368 insertions(+) create mode 100644 src/404.vto create mode 100644 src/_components/gif_row.vto create mode 100644 src/_data.yaml create mode 100644 src/_includes/base.vto create mode 100644 src/_includes/blogpost.vto create mode 100644 src/_includes/index.vto create mode 100644 src/_includes/parts/footer.vto create mode 100644 src/_includes/parts/head.vto create mode 100644 src/_includes/parts/nav.vto create mode 100644 src/index.md create mode 100644 src/static/favicon.ico create mode 100644 src/static/imgs/construction.png create mode 100644 src/static/imgs/gifs/acab.gif create mode 100644 src/static/imgs/gifs/arnold.gif create mode 100644 src/static/imgs/gifs/capitalism.gif create mode 100644 src/static/imgs/gifs/legalize.gif create mode 100644 src/static/imgs/gifs/obras.gif create mode 100644 src/static/imgs/gifs/poweredbynix.svg create mode 100644 src/static/imgs/gifs/pride.gif create mode 100644 src/static/imgs/gifs/steam.gif create mode 100644 src/static/imgs/gifs/web3.gif create mode 100644 src/static/imgs/gifs/weezer.gif create mode 100644 src/static/imgs/tapwater.png create mode 100644 src/static/main.css (limited to 'src') diff --git a/src/404.vto b/src/404.vto new file mode 100644 index 0000000..c5eb621 --- /dev/null +++ b/src/404.vto @@ -0,0 +1,14 @@ +--- +layout: "base.vto" +title: "404!" +description: "Can I get you some tapwater?" +--- + +

404 :(

+ +Can I get you some tapwater? diff --git a/src/_components/gif_row.vto b/src/_components/gif_row.vto new file mode 100644 index 0000000..ebc56f8 --- /dev/null +++ b/src/_components/gif_row.vto @@ -0,0 +1,10 @@ +{{ for gif of gifs }} + {{ + set img = `${gif.alt}` + }} + {{ if gif.href }} + {{ img }} + {{ else }} + {{ img }} + {{ /if }} +{{ /for }} diff --git a/src/_data.yaml b/src/_data.yaml new file mode 100644 index 0000000..8e057b6 --- /dev/null +++ b/src/_data.yaml @@ -0,0 +1,33 @@ +repository_url: "https://github.com/getchoo/website" + +metas: + site: "getchoo.com" + title: "=title" + description: "=description" + lang: "en" + color: "#89b4fa" + icon: "/favicon.ico" + +home_page_gifs: + - name: "acab.gif" + alt: "ACAB!" + - name: "arnold.gif" + alt: "Hey Arnold!" + - name: "capitalism.gif" + alt: "Let's crush capitalism!" + - name: "legalize.gif" + alt: "Legalize marijuana now!" + - name: "poweredbynix.svg" + alt: "Powered by NixOS" + href: "https://github.com/sakecode" + - name: "pride.gif" + alt: "LGBTQ Pride now!" + - name: "steam.gif" + alt: "Play on Steam!" + href: "https://dnsense.pub/" + - name: "weezer.gif" + alt: "Weezer fan" + +nav_links: + home: "/" + github: "https://github.com/getchoo" diff --git a/src/_includes/base.vto b/src/_includes/base.vto new file mode 100644 index 0000000..82adb54 --- /dev/null +++ b/src/_includes/base.vto @@ -0,0 +1,10 @@ + + + + {{ include "parts/head.vto" }} +

getchoo's website 🦕

+ {{ include "parts/nav.vto" }} + {{ content }} + {{ include "parts/footer.vto" }} + + diff --git a/src/_includes/blogpost.vto b/src/_includes/blogpost.vto new file mode 100644 index 0000000..3d77ffa --- /dev/null +++ b/src/_includes/blogpost.vto @@ -0,0 +1,5 @@ +{{ layout "base.vto" }} +
+ {{ content }} +
+{{ /layout }} diff --git a/src/_includes/index.vto b/src/_includes/index.vto new file mode 100644 index 0000000..df35f00 --- /dev/null +++ b/src/_includes/index.vto @@ -0,0 +1,7 @@ +{{ layout "base.vto" }} + {{ content }} + +
+ {{ comp.gif_row({ gifs: home_page_gifs }) }} +
+{{ /layout }} diff --git a/src/_includes/parts/footer.vto b/src/_includes/parts/footer.vto new file mode 100644 index 0000000..b2c3348 --- /dev/null +++ b/src/_includes/parts/footer.vto @@ -0,0 +1,3 @@ + diff --git a/src/_includes/parts/head.vto b/src/_includes/parts/head.vto new file mode 100644 index 0000000..5097840 --- /dev/null +++ b/src/_includes/parts/head.vto @@ -0,0 +1,7 @@ + + + {{ it.title }} + + + + diff --git a/src/_includes/parts/nav.vto b/src/_includes/parts/nav.vto new file mode 100644 index 0000000..97f7849 --- /dev/null +++ b/src/_includes/parts/nav.vto @@ -0,0 +1,9 @@ + diff --git a/src/index.md b/src/index.md new file mode 100644 index 0000000..314db17 --- /dev/null +++ b/src/index.md @@ -0,0 +1,13 @@ +--- +layout: "index.vto" +title: "guzzle guzzle" +description: "guzzle guzzle" +--- + + + +this is under construction. i'm experimenting with lume + +![Under construction](/imgs/gifs/obras.gif) diff --git a/src/static/favicon.ico b/src/static/favicon.ico new file mode 100644 index 0000000..4880f14 Binary files /dev/null and b/src/static/favicon.ico differ diff --git a/src/static/imgs/construction.png b/src/static/imgs/construction.png new file mode 100644 index 0000000..1c038b0 Binary files /dev/null and b/src/static/imgs/construction.png differ diff --git a/src/static/imgs/gifs/acab.gif b/src/static/imgs/gifs/acab.gif new file mode 100644 index 0000000..6f8ccef Binary files /dev/null and b/src/static/imgs/gifs/acab.gif differ diff --git a/src/static/imgs/gifs/arnold.gif b/src/static/imgs/gifs/arnold.gif new file mode 100644 index 0000000..0035988 Binary files /dev/null and b/src/static/imgs/gifs/arnold.gif differ diff --git a/src/static/imgs/gifs/capitalism.gif b/src/static/imgs/gifs/capitalism.gif new file mode 100644 index 0000000..c4abb60 Binary files /dev/null and b/src/static/imgs/gifs/capitalism.gif differ diff --git a/src/static/imgs/gifs/legalize.gif b/src/static/imgs/gifs/legalize.gif new file mode 100644 index 0000000..071d4d4 Binary files /dev/null and b/src/static/imgs/gifs/legalize.gif differ diff --git a/src/static/imgs/gifs/obras.gif b/src/static/imgs/gifs/obras.gif new file mode 100644 index 0000000..3c8443e Binary files /dev/null and b/src/static/imgs/gifs/obras.gif differ diff --git a/src/static/imgs/gifs/poweredbynix.svg b/src/static/imgs/gifs/poweredbynix.svg new file mode 100644 index 0000000..0bc8c80 --- /dev/null +++ b/src/static/imgs/gifs/poweredbynix.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/static/imgs/gifs/pride.gif b/src/static/imgs/gifs/pride.gif new file mode 100644 index 0000000..9a48896 Binary files /dev/null and b/src/static/imgs/gifs/pride.gif differ diff --git a/src/static/imgs/gifs/steam.gif b/src/static/imgs/gifs/steam.gif new file mode 100644 index 0000000..1f4fe29 Binary files /dev/null and b/src/static/imgs/gifs/steam.gif differ diff --git a/src/static/imgs/gifs/web3.gif b/src/static/imgs/gifs/web3.gif new file mode 100644 index 0000000..4f5a2f1 Binary files /dev/null and b/src/static/imgs/gifs/web3.gif differ diff --git a/src/static/imgs/gifs/weezer.gif b/src/static/imgs/gifs/weezer.gif new file mode 100644 index 0000000..d7fa9d1 Binary files /dev/null and b/src/static/imgs/gifs/weezer.gif differ diff --git a/src/static/imgs/tapwater.png b/src/static/imgs/tapwater.png new file mode 100644 index 0000000..e84fe8e Binary files /dev/null and b/src/static/imgs/tapwater.png differ diff --git a/src/static/main.css b/src/static/main.css new file mode 100644 index 0000000..d684a7c --- /dev/null +++ b/src/static/main.css @@ -0,0 +1,70 @@ +/* +* This palette is from the Catppuccin project. Check it out! +* https://catppuccin.com/ +*/ + +:root { + --background-color: #1e1e2e; /* mocha base */ + --primary-font: "Noto Sans"; + --regular-text: #cdd6f4; /* mocha text */ + --blue-text: #89b4fa; /* mocha blue */ + --subtext: #bac2de; /* mocha subtext1 */ + --medium-screen: 768px; +} + +body { + background-color: var(--background-color); + font-family: var(--primary-font), system-ui; + line-height: 1.5rem; + margin-left: auto; + margin-right: auto; + margin-top: 1.25rem; + margin-bottom: 1.25rem; + max-width: var(--medium-screen); + padding: 0.75rem; +} + +h1, h2, h3, h4, h5, h6, strong, b, p { + color: var(--regular-text); +} + +a { + text-decoration: underline; + color: var(--blue-text); +} + +video { + width: 100%; + height: auto; + max-width: var(--medium-screen); +} + +footer { + color: var(--subtext); + font-size: 0.75rem; + + text-align: right; +} + +#nav_links { + display: flex; + gap: 0.25rem; +} + +#gifs { + display: none; + flex-direction: row; + flex-wrap: wrap; + gap: 0.5rem; + justify-content: space-evenly; +} + +.blogpost { + font-size: 0.85rem; +} + +@media screen and (min-width: 768px) { + #gifs { + display: flex; + } +} -- cgit v1.2.3