forked from Firepup650/firepup-site
Add a route back to index on all pages
This commit is contained in:
parent
dfa2ad7288
commit
9ff5e50738
1 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,10 @@
|
||||||
var foot = document.createElement("footer");
|
var foot = document.createElement("footer");
|
||||||
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><br/><span class="rainbow">Website © 2023 Firepup650</span>`;
|
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>
|
||||||
|
<br/>
|
||||||
|
<a href="/" class="cyan">Return to index</a>
|
||||||
|
<br/>
|
||||||
|
<span class="rainbow">Website © 2023 Firepup650</span>
|
||||||
|
`;
|
||||||
foot.style.marginTop = "auto";
|
foot.style.marginTop = "auto";
|
||||||
foot.style.textAlign = "center";
|
foot.style.textAlign = "center";
|
||||||
document.querySelector("body").append(foot);
|
document.querySelector("body").append(foot);
|
||||||
|
|
Loading…
Reference in a new issue