Skip to content

Commit

Permalink
add friendly pages
Browse files Browse the repository at this point in the history
  • Loading branch information
blackshibe committed May 19, 2024
1 parent 79e56c4 commit a358455
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,23 @@

<hr />

<a href="https://twitter.com/Serpent____x">the man behind the art on this page</a>
<a href="" id="random-tag">visit a friendly website</a>

<hr />

<a href="page/music.html">music archive</a>
<a href="page/wallpapers.html">wallpaper archive</a>
<a href="https://twitter.com/Serpent____x">the man behind the art on this page</a>
</div>
</div>
</article>
</div>
</div>
</body>
<script>
let pages = ["https://erizo.cc/", "http://rxn.lol/"];
let random_index = Math.round(Math.random() * pages.length);

document.getElementById("random-tag").setAttribute("href", pages[random_index]);
</script>
</html>

0 comments on commit a358455

Please sign in to comment.