Compare commits
10 commits
dfe49d6021
...
0ed4b33fde
Author | SHA1 | Date | |
---|---|---|---|
0ed4b33fde | |||
a7094102cd | |||
86e0e3cf93 | |||
439df5ecf0 | |||
f7f75ab9aa | |||
e4a321c410 | |||
185f8d6318 | |||
77bb6a545f | |||
3eb9d53772 | |||
2749a3aa44 |
3 changed files with 8 additions and 6 deletions
|
@ -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]].
|
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]].
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
User-agent: *
|
User-agent: *
|
||||||
Disallow: /
|
Disallow: /sily-bot/
|
||||||
|
Disallow: /images/
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
function load_random_site() {
|
function load_random_site() {
|
||||||
console.log("requested random site");
|
|
||||||
|
|
||||||
const webring_all_url = "https://aidang.cc/webring/all";
|
const webring_all_url = "https://aidang.cc/webring/all";
|
||||||
|
|
||||||
fetch(webring_all_url)
|
fetch(webring_all_url)
|
||||||
.then((response) => response.json())
|
.then((response) => response.json())
|
||||||
.then((obj) => {
|
.then((obj) => {
|
||||||
const urls = obj;
|
const entries = obj.filter((item) => {
|
||||||
console.log(urls);
|
return item.url !== "https://jjanzen.ca";
|
||||||
|
});
|
||||||
|
const entry = entries[Math.floor(Math.random() * entries.length)];
|
||||||
|
window.location.href = entry.url;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue