firepup-site/public/scripts/footer.js

11 lines
577 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>
2023-10-02 03:04:29 +00:00
${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
foot.style.marginTop = "auto";
foot.style.textAlign = "center";
document.querySelector("body").append(foot);
2023-10-02 02:46:16 +00:00
console.debug("Footer Script done.")