diff --git a/config.toml b/config.toml index 1973ec2..e665887 100644 --- a/config.toml +++ b/config.toml @@ -1,5 +1,5 @@ baseURL = "https://zoe.kittycat.homes/" languageCode = "eng" -title = "batsite" +title = "bat" theme = "battheme" sectionPagesMenu = "main" diff --git a/content/links/cool_people.md b/content/links/cool_people.md index 878c607..b8ca5ea 100644 --- a/content/links/cool_people.md +++ b/content/links/cool_people.md @@ -26,7 +26,7 @@ theres [pastel.codes](https://pastel.codes/) and [pentagram.site](https://pentag ## elysia -fae is cool and queer and also cats! what's not to love! [go look!](http://alphamethyl.barr0w.net/~elysia/) +{{< randomword "fae, she, xey, sie, it, they, sin" >}} is cool and queer and also cats! what's not to love! [go look!](http://alphamethyl.barr0w.net/~elysia/) this type of website also just makes me happy! ## barrow diff --git a/content/links/nice_things.md b/content/links/nice_things.md index f0f1a23..7261845 100644 --- a/content/links/nice_things.md +++ b/content/links/nice_things.md @@ -11,5 +11,5 @@ description: "this is a list of very good things" ## videos -### an entire tray of peas +### a whole tray of peas [the raw energy of this is just amazing](https://www.youtube.com/watch?v=HWcKcUn7e-8) she just eats the entire tray of peas!!! impressive! diff --git a/public/about/index.html b/public/about/index.html index 785ae3d..5d6b540 100644 --- a/public/about/index.html +++ b/public/about/index.html @@ -2,7 +2,8 @@ - about@batsite + about@bat + @@ -45,7 +46,7 @@ i’m also trans and gay and queer :)

- - + diff --git a/public/categories/index.html b/public/categories/index.html index 85828ad..6d18094 100644 --- a/public/categories/index.html +++ b/public/categories/index.html @@ -2,11 +2,12 @@ - Categories@batsite + Categories@bat + - +
@@ -25,7 +26,7 @@
- - + diff --git a/public/categories/index.xml b/public/categories/index.xml index 5e3def2..98ec1f6 100644 --- a/public/categories/index.xml +++ b/public/categories/index.xml @@ -1,9 +1,9 @@ - Categories on batsite + Categories on bat https://zoe.kittycat.homes/categories/ - Recent content in Categories on batsite + Recent content in Categories on bat Hugo -- gohugo.io eng diff --git a/public/games/index.html b/public/games/index.html index 409baa8..439da43 100644 --- a/public/games/index.html +++ b/public/games/index.html @@ -2,11 +2,12 @@ - games@batsite + games@bat + - +
@@ -25,7 +26,7 @@
- - + diff --git a/public/games/index.xml b/public/games/index.xml index bbd2a9b..1d04d24 100644 --- a/public/games/index.xml +++ b/public/games/index.xml @@ -1,9 +1,9 @@ - games on batsite + games on bat https://zoe.kittycat.homes/games/ - Recent content in games on batsite + Recent content in games on bat Hugo -- gohugo.io eng Fri, 15 Apr 2022 20:42:16 +0200 diff --git a/public/index.html b/public/index.html index 5294f57..e0c1bac 100644 --- a/public/index.html +++ b/public/index.html @@ -3,11 +3,12 @@ - home@batsite + home@bat + - +
@@ -40,7 +41,7 @@ if you ever wish to experience of of those, i hope you enjoy!

- batsite + bat
- - + diff --git a/public/index.xml b/public/index.xml index 559cef9..e6f298b 100644 --- a/public/index.xml +++ b/public/index.xml @@ -1,9 +1,9 @@ - home on batsite + home on bat https://zoe.kittycat.homes/ - Recent content in home on batsite + Recent content in home on bat Hugo -- gohugo.io eng Fri, 15 Apr 2022 20:45:43 +0200 @@ -14,7 +14,7 @@ https://zoe.kittycat.homes/links/nice_things/ &nbsp;my girlfriend!!! hehe fae is so cute -&nbsp;videos &nbsp;an entire tray of peas the raw energy of this is just amazing she just eats the entire tray of peas!!! impressive! +&nbsp;videos &nbsp;a whole tray of peas the raw energy of this is just amazing she just eats the entire tray of peas!!! impressive! diff --git a/public/js/lightmode.js b/public/js/lightmode.js index cc5f62d..2bcc10b 100644 --- a/public/js/lightmode.js +++ b/public/js/lightmode.js @@ -12,7 +12,6 @@ function switchToLight() { function switchToDark() { button.innerHTML = ""; for (let item of colorswitchers) { - console.log(item); item.classList.remove("light"); } } diff --git a/public/js/main.js b/public/js/main.js index 6fc7c3d..fbd249e 100644 --- a/public/js/main.js +++ b/public/js/main.js @@ -1,7 +1,9 @@ import { updateMode } from "./lightmode.js"; import { activateHamburger } from "./hamburger.js"; +import { randomizeWords } from "./randomword.js"; document.addEventListener("DOMContentLoaded", () => { updateMode(); activateHamburger(); + randomizeWords(); }); diff --git a/public/js/randomword.js b/public/js/randomword.js new file mode 100644 index 0000000..3dd5780 --- /dev/null +++ b/public/js/randomword.js @@ -0,0 +1,31 @@ +const buttons = document.getElementsByClassName("randomword-button"); + +export function randomizeWords() { + registerButtons(); +} + +function registerButtons() { + for (let button of buttons) { + button.addEventListener("click", function () { + let new_word = processWordlist(button.getAttribute("data-wordlist")); + // do this so people dont have to click twice + if (button.innerHTML == new_word) { + button.click(); + console.log("oh no!!! this was already the value!"); + } else { + button.innerHTML = new_word; + } + }); + button.click(); + } +} + +// takes all the words and returns only one +function processWordlist(wordlist) { + let seperated = wordlist.split(","); + return seperated.random(); +} + +Array.prototype.random = function () { + return this[Math.floor(Math.random() * this.length)]; +}; diff --git a/public/links/buddies/index.html b/public/links/buddies/index.html index 5d6eede..14f23f9 100644 --- a/public/links/buddies/index.html +++ b/public/links/buddies/index.html @@ -2,7 +2,8 @@ - buddies@batsite + buddies@bat + @@ -44,7 +45,8 @@ theres pastel.codes and go look! +

+ is cool and queer and also cats! what’s not to love! go look! this type of website also just makes me happy!

@@ -65,7 +67,7 @@ this type of website also just makes me happy!

- batsite + bat
- - + diff --git a/public/links/contact/index.html b/public/links/contact/index.html index cba70cb..f253b6c 100644 --- a/public/links/contact/index.html +++ b/public/links/contact/index.html @@ -2,7 +2,8 @@ - find me@batsite + find me@bat + @@ -34,7 +35,7 @@ - - + diff --git a/public/links/index.html b/public/links/index.html index de3f60d..a53de98 100644 --- a/public/links/index.html +++ b/public/links/index.html @@ -2,11 +2,12 @@ - links@batsite + links@bat + - +
@@ -43,7 +44,7 @@
- - + diff --git a/public/links/index.xml b/public/links/index.xml index bd55a48..637d438 100644 --- a/public/links/index.xml +++ b/public/links/index.xml @@ -1,9 +1,9 @@ - links on batsite + links on bat https://zoe.kittycat.homes/links/ - Recent content in links on batsite + Recent content in links on bat Hugo -- gohugo.io eng Sat, 09 Apr 2022 17:37:48 +0200 @@ -14,7 +14,7 @@ https://zoe.kittycat.homes/links/nice_things/ &nbsp;my girlfriend!!! hehe fae is so cute -&nbsp;videos &nbsp;an entire tray of peas the raw energy of this is just amazing she just eats the entire tray of peas!!! impressive! +&nbsp;videos &nbsp;a whole tray of peas the raw energy of this is just amazing she just eats the entire tray of peas!!! impressive! diff --git a/public/links/nice_things/index.html b/public/links/nice_things/index.html index 7ee0a8c..3e8f76d 100644 --- a/public/links/nice_things/index.html +++ b/public/links/nice_things/index.html @@ -2,7 +2,8 @@ - things that make me happy@batsite + things that make me happy@bat + @@ -26,9 +27,9 @@  videos

-

- -  an entire tray of peas +

+ +  a whole tray of peas

the raw energy of this is just amazing she just eats the entire tray of peas!!! impressive!

@@ -45,7 +46,7 @@ - - + diff --git a/public/music/index.html b/public/music/index.html index a2b3b88..f65ae17 100644 --- a/public/music/index.html +++ b/public/music/index.html @@ -2,11 +2,12 @@ - music@batsite + music@bat + - +
@@ -31,7 +32,7 @@
- - + diff --git a/public/music/index.xml b/public/music/index.xml index a07dbee..499d526 100644 --- a/public/music/index.xml +++ b/public/music/index.xml @@ -1,9 +1,9 @@ - music on batsite + music on bat https://zoe.kittycat.homes/music/ - Recent content in music on batsite + Recent content in music on bat Hugo -- gohugo.io eng Fri, 15 Apr 2022 20:45:35 +0200 diff --git a/public/posts/index.html b/public/posts/index.html index a271793..1158d6b 100644 --- a/public/posts/index.html +++ b/public/posts/index.html @@ -2,11 +2,12 @@ - posts@batsite + posts@bat + - +
@@ -25,7 +26,7 @@
- - + diff --git a/public/posts/index.xml b/public/posts/index.xml index 9e18772..0133346 100644 --- a/public/posts/index.xml +++ b/public/posts/index.xml @@ -1,9 +1,9 @@ - posts on batsite + posts on bat https://zoe.kittycat.homes/posts/ - Recent content in posts on batsite + Recent content in posts on bat Hugo -- gohugo.io eng Sun, 10 Apr 2022 19:06:26 +0200 diff --git a/public/scss/main.css b/public/scss/main.css index 38b80ef..8f3b88e 100644 --- a/public/scss/main.css +++ b/public/scss/main.css @@ -13,6 +13,21 @@ a { background-color: transparent; color: #9b5bb4; } +.randomword-button { + border-color: #ff8ad0; + background-color: #413c74; + color: #ff8ad0; } + .randomword-button.light { + border-color: #413c74; + background-color: #ffffff; + color: #413c74; } + .randomword-button.light:hover { + color: #ffffff; + background-color: #413c74; } + .randomword-button:hover { + color: #413c74; + background-color: #ff8ad0; } + a.footer-nav-item.active, a.footer-nav-item:hover { color: #ff8ad0; @@ -233,13 +248,18 @@ footer { right: auto; margin-bottom: 84pt; } +.randomword-button { + width: auto; + height: auto; } + #content p, #content ul, #content ol, #content table, code, .postdescription, -hr { +hr, +#content div .video-player { margin-right: 24%; margin-left: 24%; } @@ -501,6 +521,13 @@ ul a { border-style: solid; padding: 0.12em; } +.randomword-button { + border-style: solid; + padding: 0.12em; + border-radius: 0; } + .randomword-button::before { + content: " "; } + #hamburger-button, #hamburger-bg, #darkmode-button-small { diff --git a/public/software/index.html b/public/software/index.html index ec30f47..a7d8a85 100644 --- a/public/software/index.html +++ b/public/software/index.html @@ -2,11 +2,12 @@ - software@batsite + software@bat + - +
@@ -25,7 +26,7 @@
- - + diff --git a/public/software/index.xml b/public/software/index.xml index cd81c30..5dddf94 100644 --- a/public/software/index.xml +++ b/public/software/index.xml @@ -1,9 +1,9 @@ - software on batsite + software on bat https://zoe.kittycat.homes/software/ - Recent content in software on batsite + Recent content in software on bat Hugo -- gohugo.io eng Fri, 15 Apr 2022 20:45:43 +0200 diff --git a/public/tags/index.html b/public/tags/index.html index 90044ff..307d05e 100644 --- a/public/tags/index.html +++ b/public/tags/index.html @@ -2,11 +2,12 @@ - Tags@batsite + Tags@bat + - +
@@ -25,7 +26,7 @@
- - + diff --git a/public/tags/index.xml b/public/tags/index.xml index 612534b..2bb1c88 100644 --- a/public/tags/index.xml +++ b/public/tags/index.xml @@ -1,9 +1,9 @@ - Tags on batsite + Tags on bat https://zoe.kittycat.homes/tags/ - Recent content in Tags on batsite + Recent content in Tags on bat Hugo -- gohugo.io eng diff --git a/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content b/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content index 38b80ef..8f3b88e 100644 --- a/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content +++ b/resources/_gen/assets/scss/scss/main.scss_f300667da4f5b5f84e1a9e0702b2fdde.content @@ -13,6 +13,21 @@ a { background-color: transparent; color: #9b5bb4; } +.randomword-button { + border-color: #ff8ad0; + background-color: #413c74; + color: #ff8ad0; } + .randomword-button.light { + border-color: #413c74; + background-color: #ffffff; + color: #413c74; } + .randomword-button.light:hover { + color: #ffffff; + background-color: #413c74; } + .randomword-button:hover { + color: #413c74; + background-color: #ff8ad0; } + a.footer-nav-item.active, a.footer-nav-item:hover { color: #ff8ad0; @@ -233,13 +248,18 @@ footer { right: auto; margin-bottom: 84pt; } +.randomword-button { + width: auto; + height: auto; } + #content p, #content ul, #content ol, #content table, code, .postdescription, -hr { +hr, +#content div .video-player { margin-right: 24%; margin-left: 24%; } @@ -501,6 +521,13 @@ ul a { border-style: solid; padding: 0.12em; } +.randomword-button { + border-style: solid; + padding: 0.12em; + border-radius: 0; } + .randomword-button::before { + content: " "; } + #hamburger-button, #hamburger-bg, #darkmode-button-small { diff --git a/themes/battheme b/themes/battheme index 26372fd..d267fc4 160000 --- a/themes/battheme +++ b/themes/battheme @@ -1 +1 @@ -Subproject commit 26372fdcca121d7d9a5b5ae4c4259efd1bbc69f3 +Subproject commit d267fc4356534ddb02426ef7e6802848580a8579