firepup-site/public/scripts/footer.js

9 lines
514 B
JavaScript
Raw Normal View History

2023-10-01 23:39:12 +00:00
var foot = document.createElement("footer");
2023-10-02 02:46:16 +00:00
foot.innerHTML = `<span class="rainbow">This website uses </span><a href="https://bookie0.repl.co" class=cyan>Bookie0's</a> <a href="https://bouncecss.bookie0.repl.co/" class=cyan>BounceCSS</a><span class="rainbow"> for styling.</span>
${location.pathname !== "/"? '<br/><a href="/" class="cyan">Return to index</a>': ''}
2023-10-02 02:46:16 +00:00
<br/>
<span class="rainbow">Website © 2023 Firepup650</span>
`;
2023-10-01 23:39:12 +00:00
document.querySelector("body").append(foot);
2023-10-02 02:46:16 +00:00
console.debug("Footer Script done.")