diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d5e7c7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +public/ +*~ \ No newline at end of file diff --git a/site-config b/site-config new file mode 100644 index 0000000..28e12aa --- /dev/null +++ b/site-config @@ -0,0 +1,2 @@ +#!/bin/bash +TITLE="yukjoou's internet homepage!" \ No newline at end of file diff --git a/src/badges/archlinux.png b/src/badges/archlinux.png deleted file mode 100644 index 670d69c..0000000 Binary files a/src/badges/archlinux.png and /dev/null differ diff --git a/src/index.html b/src/index.html index 8eb4518..7bc5c21 100644 --- a/src/index.html +++ b/src/index.html @@ -1,149 +1,89 @@ - - - - - +

about me

+

+ i'm an autistic gay trans girl who likes computers. i like old technologies + and other stuff that doesn't work properly. +
+ i'm the webmistress that runs + kemonomimi.gay, with the help of my + amazing friends :3 +

+

+ i like spending time on the internet, and seeing what the cute people of the + fediverse post. when i'm not doing that, i like to write code and do silly + projects!
+ i also have a + blog, though it's quite + empty for now... +

- - - +

talk to me. i dare u.

+

+ i'm available on matrix: @yukijoou:catgirl.cloud +
+ i have a fedi account: + @yukijoou@fedi.kemonomimi.gay +
+ i also have a selfhosted email: + [SHOW EMAIL] - yukijoou's internet homepage :3 - - - -

-

yukijoou's homepage

-

雪女王

-

- i like posting silly things on the web! you can find a bunch of - it here! -

+ + +

- -
+

silly projects

+

the things i do at my computer :3

-
-

about me

-

- i'm an autistic gay trans girl who likes computers. i like old - technologies and other stuff that doesn't work properly. -
- i'm the webmistress that runs - kemonomimi.gay, with the - help of my amazing friends :3 -

-

- i like spending time on the internet, and seeing what the cute - people of the fediverse post. when i'm not doing that, i like to - write code and do silly projects!
- i also have a - blog, though - it's quite empty for now... -

+

convertablet

+

+ it's a dameon to get 2-in-1 laptop/tablet convertible devices to work well + using wlroots-based compositors on linux. for now it's more or less + specifically made for my own lenovo miix-320icr, but the goal is to make it + so that all laptops that can act as tablets work smoothly on linux+wlroots. +

+

+ currently hosted at + yukijoou/convertablet, no proper documentation yet, but if you want to get it working on your + device, please get in touch! i'll be more than happy to make it work, and + will include support for your device once i get it in a working state! +

-

talk to me. i dare u.

-

- i'm available on matrix: @yukijoou:catgirl.cloud -
- i have a fedi account: - @yukijoou@fedi.kemonomimi.gay -
- i also have a selfhosted email: - [SHOW EMAIL] +

kemonomimi.gay

+

+ i do sysadmin work to keep the websites and services we host running! most + of my work is behind the scene, and shoudln't be noticeable (i hope). at + some point, i want to opensource most of the scripts i use to manage this + infrastructure so that other people can see how it all works, and be + inclined to selfhost their stuff ^_^ +

- - -

- -

silly projects

-

the things i do at my computer :3

- -

convertablet

-

- it's a dameon to get 2-in-1 laptop/tablet convertible devices to - work well using wlroots-based compositors on linux. for now it's - more or less specifically made for my own lenovo miix-320icr, - but the goal is to make it so that all laptops that can act as - tablets work smoothly on linux+wlroots. -

-

- currently hosted at - yukijoou/convertablet, no proper documentation yet, but if you want to get it - working on your device, please get in touch! i'll be more than - happy to make it work, and will include support for your device - once i get it in a working state! -

- -

kemonomimi.gay

-

- i do sysadmin work to keep the websites and services we host - running! most of my work is behind the scene, and shoudln't be - noticeable (i hope). at some point, i want to opensource most of - the scripts i use to manage this infrastructure so that other - people can see how it all works, and be inclined to selfhost - their stuff ^_^ -

- -

reduced motion in opensource projects

-

- i'm on a crusade to get as much of the software i'm using as - possible to be reduced-motion friendly. as i'm quite - motion-sensitive, i really don't like stuff that moves arounde - everywhere, so i try to make websites and apps not have it when - the "reduced motion" setting is enabled!
- i don't have any page where i track this sort of thing, i just - mostly do one-off contribution to projects and hope they accept - it -

-
- - - - +

reduced motion in opensource projects

+

+ i'm on a crusade to get as much of the software i'm using as possible to be + reduced-motion friendly. as i'm quite motion-sensitive, i really don't like + stuff that moves arounde everywhere, so i try to make websites and apps not + have it when the "reduced motion" setting is enabled!
+ i don't have any page where i track this sort of thing, i just mostly do + one-off contribution to projects and hope they accept it +

diff --git a/src/style.css b/static/style.css similarity index 100% rename from src/style.css rename to static/style.css diff --git a/template/footer.html b/template/footer.html new file mode 100644 index 0000000..e04f5b2 --- /dev/null +++ b/template/footer.html @@ -0,0 +1,21 @@ + + + + + diff --git a/template/header.html b/template/header.html new file mode 100644 index 0000000..f732fea --- /dev/null +++ b/template/header.html @@ -0,0 +1,33 @@ + + + + + + + + + + + [ title ] + + + +
+

yukijoou's webplace

+

雪女王

+

+ i like posting silly things on the web! you can find a bunch of + it here! +

+ + +
+ +
diff --git a/update.sh b/update.sh index 4f90bff..aee4d13 100755 --- a/update.sh +++ b/update.sh @@ -11,11 +11,19 @@ WEBSITES_PATH="$HOME/www" BACKUP_DIR=$(mktemp -d) +SITE_INATOR=${SITE_INATOR:-site-inator} + +echo "Generating pages..." +$SITE_INATOR; + +exit; + + cp -rf "$WEBSITES_PATH" $BACKUP_DIR/$WEBSITE_NAME.bak echo "Made backup at $BACKUP_DIR" rm -rf "$WEBSITES_PATH" mkdir -p "$WEBSITES_PATH" -cp -rf src/* "$WEBSITES_PATH" +cp -rf public/* "$WEBSITES_PATH" echo "Installed $WEBSITE_NAME at $WEBSITES_PATH"