Skip to content

Commit

Permalink
see if you can link a repo to a different folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Phantop committed Aug 21, 2024
1 parent 974c5e5 commit 94dd626
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions rss
18 changes: 18 additions & 0 deletions rss-bridge-action/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<html>
<body>
<script>
(async () => {
const response = await fetch('https://api.github.com/repos/phantop/rss-bridge-action/contents/');
const data = await response.json();
let htmlString = '<ul>';

for (let file of data) {
htmlString += `<li><a href="${file.path}">${file.name}</a></li>`;
}

htmlString += '</ul>';
document.getElementsByTagName('body')[0].innerHTML = htmlString;
})()
</script>
<body>
</html>

0 comments on commit 94dd626

Please sign in to comment.