Skip to content

Commit

Permalink
3kh0 lite
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-92 authored Dec 15, 2024
1 parent 935174f commit b3b8f87
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions asdjklhfskjafhakfhueoyraehfjkcnjkdscnsjakdreuoiwefh/atlas.html
Original file line number Diff line number Diff line change
Expand Up @@ -10761,6 +10761,20 @@ <h1>Not-Games</h1>
anchor.style.display = 'block';
newLinks.push(anchor);
});
// 3kh0 lite
fetch("https://lite.3kh0.net/config/games.json")
.then((response) => response.json())
.then((data) => {
data.forEach((project) => {
const anchor = document.createElement('a');
anchor.href = 'https://lite.3kh0.net/'+project.link;
anchor.textContent = project.title + `~3kh0lite`;
anchor.style.display = 'block';
newLinks.push(anchor);

})})
.catch((error) => console.error("Error:", error));
// end of link dbs
const allLinks = sortLinksAlphabetically(newLinks);
const gamesList = document.getElementById('gamesList');
allLinks.forEach(link => {
Expand Down

0 comments on commit b3b8f87

Please sign in to comment.