Skip to content

Commit

Permalink
deploy: 52ef9fb
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAShelf committed Dec 7, 2024
0 parents commit d77dc05
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
Binary file added catppuccin.zip
Binary file not shown.
Binary file added cities.zip
Binary file not shown.
Binary file added gruvbox.zip
Binary file not shown.
36 changes: 36 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Wallpkgs</title>
</head>
<body>
<h1>Wallpkgs</h1>
<ul id="archive-list"></ul>
<script>
const baseURL = window.location.origin;
const archives = [
"catppuccin.zip",
"cities.zip",
"gruvbox.zip",
"monochrome-dark.zip",
"nature.zip",
"oxocarbon.zip",
"rose_pine.zip",
"space.zip",
"tokyo_night.zip",
];

const list = document.getElementById("archive-list");
archives.forEach((archive) => {
const li = document.createElement("li");
const link = document.createElement("a");
link.href = `${baseURL}/${archive}`;
link.textContent = archive.replace(".zip", "").replace("_", " ");
li.appendChild(link);
list.appendChild(li);
});
</script>
</body>
</html>
Binary file added monochrome.zip
Binary file not shown.
Binary file added nature.zip
Binary file not shown.
Binary file added oxocarbon.zip
Binary file not shown.
Binary file added rose_pine.zip
Binary file not shown.
Binary file added space.zip
Binary file not shown.
Binary file added tokyo_night.zip
Binary file not shown.

0 comments on commit d77dc05

Please sign in to comment.