Compare commits

...

10 commits

3 changed files with 8 additions and 6 deletions

View file

@ -4,4 +4,4 @@ Here is my website. The main design goal is minimal but visually appealing. I us
Find me on [[https://github.com/jjanzenn][GitHub]].
The source code for this website can be found [[https://git.sr.ht/~jjanzen/website][here]]. It is licensed under [[https://opensource.org/license/mit][the MIT License]].
The source code for this website can be found [[https://git.jjanzen.ca/index.cgi/website.git/][here]]. It is licensed under [[https://opensource.org/license/mit][the MIT License]].

View file

@ -1,2 +1,3 @@
User-agent: *
Disallow: /
Disallow: /sily-bot/
Disallow: /images/

View file

@ -1,13 +1,14 @@
function load_random_site() {
console.log("requested random site");
const webring_all_url = "https://aidang.cc/webring/all";
fetch(webring_all_url)
.then((response) => response.json())
.then((obj) => {
const urls = obj;
console.log(urls);
const entries = obj.filter((item) => {
return item.url !== "https://jjanzen.ca";
});
const entry = entries[Math.floor(Math.random() * entries.length)];
window.location.href = entry.url;
});
}