Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mostlime12195 committed Dec 19, 2024
1 parent 045ad15 commit 0f245c4
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,18 +100,20 @@ <h2>Popular Beatmaps</h2>
</div>
</div>

<footer id="footer"></footer>
<script>
fetch("footer.html")
.then(response => response.text())
.then(content => {
document.getElementById("footer").innerHTML = content;
});
</script>

</div>
<div class="column right">
</div>
</div>
<footer id="footer"></footer>
<script>
fetch("footer.html")
.then(response => response.text())
.then(content => {
document.getElementById("footer").innerHTML = content;
});
</script>


<div class="statuslines" id="statuslines">
<div class="progress" id="script-progress">
Expand Down

0 comments on commit 0f245c4

Please sign in to comment.